From f2a0cdc7d5bf80c429c54dc834f1254385f6c36e Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Thu, 24 Oct 2024 18:34:32 +0200 Subject: [PATCH] Fix `cargo doc` warning --- crates/fj-core/src/layers/layer.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/fj-core/src/layers/layer.rs b/crates/fj-core/src/layers/layer.rs index 689335b12..0e8567c53 100644 --- a/crates/fj-core/src/layers/layer.rs +++ b/crates/fj-core/src/layers/layer.rs @@ -7,8 +7,8 @@ use std::ops::Deref; /// direct write access. /// /// Instead, each write access to state is reified as a command, which are -/// processed by [`Layer::process`]. Processing a command can result in any -/// number of events, which can then be used as commands for other layers. +/// processed by [`Layer::process_command`]. Processing a command can result in +/// any number of events, which can then be used as commands for other layers. /// /// This design takes inspiration from, and uses the nomenclature of, this /// article: