From 998bbb8329d263f6da72c0eeffea76cef0e6f11b Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 20 Apr 2026 14:49:56 +0800 Subject: Add intro section and remove phantom renderers from docs --- docs/pages/3-features/1-parser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/pages/3-features/1-parser.md') 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() -- cgit