Skip to content

Commit

Permalink
Readme updates
Browse files Browse the repository at this point in the history
  • Loading branch information
orangeduck committed Apr 17, 2014
1 parent 861e931 commit f73d821
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ Consumes no input, always successful, returns `NULL`
```c
mpc_parser_t *mpc_fail(const char *m);
mpc_parser_t *mpc_failf(const char *fmt, ...);
```

Consumes no input, always fails with message `m`.
Expand Down Expand Up @@ -235,7 +234,7 @@ Consumes no input. Successful when function `f` returns true. Always returns `NU
Function `f` is a _anchor_ function. It takes as input the last character parsed, and the next character in the input, and returns success or failure based upon these. This function can be set by the user to ensure some condition is met. This could be that the input is at a boundary between words and non-words, or anything else. The nice thing about this parser is that it consumes no input.
At the start of the input the first argument is set to `\\0`. At the end of the input the second argument is set to the `\\0`.
At the start of the input the first argument is set to `\0`. At the end of the input the second argument is set to the `\0`.
Expand Down

0 comments on commit f73d821

Please sign in to comment.