Skip to content

Commit 96dc23e

Browse files
committed
Update README
1 parent 95178af commit 96dc23e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ And the code is easier to debug than macros.
4040
|list(p,s) |Match list of *p*, separated by *s*.|
4141
|one_of(set) |Success when current input symbol is one of the set.|
4242
|none_of(set)|Success when current input symbol is none of the set.|
43-
|range(r) |Success when the range contains current input symbol.|
4443
|is_a(predicate) |Success when predicate return true on current input symbol.|
4544
|not_a(predicate)|Success when predicate return false on current input symbol.|
4645
|take(n)|Read *n* symbols.|
4746
|skip(n)|Skip *n* symbols.|
4847
|call(pf)|Call a parser factory, can used to create recursive parsers.|
48+
|comb(p)|Wrap parser as a combinator.|
4949

5050
|Parser Combinators|Description|
5151
| --- | --- |

rustfmt.toml

+2
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ format_strings = false
22
reorder_imports = true
33
hard_tabs = true
44
fn_args_layout = "Block"
5+
max_width = 200
6+
ideal_width = 160

0 commit comments

Comments
 (0)