diff options
Diffstat (limited to 'docs/pages')
| -rw-r--r-- | docs/pages/3-features/1-parser.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/pages/3-features/1-parser.md b/docs/pages/3-features/1-parser.md index 9c48cfd..1490218 100644 --- a/docs/pages/3-features/1-parser.md +++ b/docs/pages/3-features/1-parser.md @@ -44,7 +44,7 @@ fn parse_hello(prev: HelloEntry) -> NextProcess { // fallback to "World" if it doesn't exist let first = picker .pick_or((), "World") - .unpack_directly().0; + .unpack_directly(); ParsedHello::new(first).to_render() } |
