From 6edaa76d67ab1ff211c7cc9cd179ffbefe93a04f Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 29 May 2026 17:13:36 +0800 Subject: Rename error types with consistent naming convention --- examples/example-error-handling/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/example-error-handling/src/main.rs') diff --git a/examples/example-error-handling/src/main.rs b/examples/example-error-handling/src/main.rs index d8db852..d4d073e 100644 --- a/examples/example-error-handling/src/main.rs +++ b/examples/example-error-handling/src/main.rs @@ -83,7 +83,7 @@ fn render_error_name_too_long(len: ErrorNameTooLong) { } #[renderer] -fn render_dispatcher_not_found(err: DispatcherNotFound) { +fn render_dispatcher_not_found(err: ErrorDispatcherNotFound) { // Prompt when command is not found, showing the input command r_println!("Command not found: \"{}\"", err.inner.join(" ")); } -- cgit