提交 e71bf23c 编写于 作者: M Mars Liu

typo

上级 09e22b4b
......@@ -62,11 +62,11 @@ public class One implements Parsec<String, String>{
```java
public interface Parsec<E, T> {
public Parsec<E, T> then(Parsec<E, T> psc) {
default Parsec<E, T> then(Parsec<E, T> psc) {
return state -> {
this.parse(state);
return psc.parse(state)
}
return psc.parse(state);
};
}
}
```
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册