Skip to content

Commit

Permalink
Fix cargo doc warning
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Oct 24, 2024
1 parent 90e37a0 commit f2a0cdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/fj-core/src/layers/layer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit f2a0cdc

Please sign in to comment.