diff --git a/README.md b/README.md index da1f3e9..cdf642e 100644 --- a/README.md +++ b/README.md @@ -555,7 +555,7 @@ Common Parsers mpc_digitsMatches one or more digit mpc_hexdigitsMatches one or more hexdigit mpc_octdigitsMatches one or more octdigit - mpc_lowerMatches and lower case character + mpc_lowerMatches any lower case character mpc_upperMatches any upper case character mpc_alphaMatches and alphabet character mpc_underscoreMatches '_' @@ -587,7 +587,7 @@ Useful Parsers mpc_strip(mpc_parser_t *a);Matches a consuming any surrounding whitespace mpc_tok(mpc_parser_t *a);Matches a and consumes any trailing whitespace mpc_sym(const char *s);Matches string s and consumes any trailing whitespace - mpc_total(mpc_parser_t *a, mpc_dtor_t da);Matches the whitespace consumed a, enclosed in the start and end of input + mpc_total(mpc_parser_t *a, mpc_dtor_t da);Matches the whitespace consumed a, enclosed in the start and end of input mpc_between(mpc_parser_t *a, mpc_dtor_t ad,
const char *o, const char *c);
Matches a between strings o and c mpc_parens(mpc_parser_t *a, mpc_dtor_t ad);Matches a between "(" and ")" mpc_braces(mpc_parser_t *a, mpc_dtor_t ad);Matches a between "<" and ">" @@ -597,7 +597,7 @@ Useful Parsers mpc_tok_parens(mpc_parser_t *a, mpc_dtor_t ad);Matches a between trailing whitespace consumed "(" and ")" mpc_tok_braces(mpc_parser_t *a, mpc_dtor_t ad);Matches a between trailing whitespace consumed "<" and ">" mpc_tok_brackets(mpc_parser_t *a, mpc_dtor_t ad);Matches a between trailing whitespace consumed "{" and "}" - mpc_tok_squares(mpc_parser_t *a, mpc_dtor_t ad);Matches a between trailing whitespace consumed "[" and "]" + mpc_tok_squares(mpc_parser_t *a, mpc_dtor_t ad);Matches a between trailing whitespace consumed "[" and "]"