aboutsummaryrefslogtreecommitdiff
path: root/docs/pages/3-features/1-parser.md
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-04-20 14:49:56 +0800
committer魏曹先生 <1992414357@qq.com>2026-04-20 14:49:56 +0800
commit998bbb8329d263f6da72c0eeffea76cef0e6f11b (patch)
treee4aacfe072c178c3e97cbc59a3a306d3bf2cca19 /docs/pages/3-features/1-parser.md
parent47e68f1d5fc9396a0b9dbc7f4536a69768edd086 (diff)
Add intro section and remove phantom renderers from docs
Diffstat (limited to 'docs/pages/3-features/1-parser.md')
-rw-r--r--docs/pages/3-features/1-parser.md2
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 f89091b..75a83d8 100644
--- a/docs/pages/3-features/1-parser.md
+++ b/docs/pages/3-features/1-parser.md
@@ -43,7 +43,7 @@ fn parse_hello(prev: HelloEntry) -> NextProcess {
// Extract the first argument from the Picker,
// fallback to "World" if it doesn't exist
let first = picker
- .pick_or((), "World".to_string())
+ .pick_or((), "World")
.unpack_directly().0;
ParsedHello::new(first).to_render()