From f27f5aeb09616b932ab48f0905994879dd8bafe5 Mon Sep 17 00:00:00 2001 From: Weicao-CatilGrass <1992414357@qq.com> Date: Sun, 17 May 2026 22:30:50 +0800 Subject: Rename `NextProcess` to `Next` across the codebase --- examples/example-resources/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/example-resources/src') diff --git a/examples/example-resources/src/main.rs b/examples/example-resources/src/main.rs index 63ebfe6..9d8dde6 100644 --- a/examples/example-resources/src/main.rs +++ b/examples/example-resources/src/main.rs @@ -35,7 +35,7 @@ pack!(ResultCurrentDir = PathBuf); fn setup( _prev: SetupEntry, resource: &mut MyResource, // Import the resource into `setup` -) -> NextProcess { +) -> Next { // Set the global resource resource.current_dir = current_dir().unwrap(); @@ -43,7 +43,7 @@ fn setup( } #[chain] -fn read(_prev: StateRead, resource: &MyResource) -> NextProcess { +fn read(_prev: StateRead, resource: &MyResource) -> Next { // Read the global resource let current_dir = resource.current_dir.clone(); ResultCurrentDir::new(current_dir).to_render() -- cgit