Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Shute052 committed Apr 29, 2024
1 parent ad15bdc commit a9f31e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/input_processing/dual_axis/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ pub enum DualAxisProcessor {
/// one for the current step and the other for the next step.
///
/// For a straightforward creation of a [`DualAxisProcessor::Pipeline`],
/// you can use [`DualAxisProcessor::with_processor`] or [`From<Vec<DualAxisProcessor>>::from`] methods.
/// you can use [`DualAxisProcessor::with_processor`] or [`FromIterator<DualAxisProcessor>::from_iter`] methods.
///
/// ```rust
/// use std::sync::Arc;
Expand Down
2 changes: 1 addition & 1 deletion src/input_processing/single_axis/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ pub enum AxisProcessor {
/// Processes input values sequentially through a sequence of [`AxisProcessor`]s.
///
/// For a straightforward creation of a [`AxisProcessor::Pipeline`],
/// you can use [`AxisProcessor::with_processor`] or [`From<Vec<AxisProcessor>>::from`] methods.
/// you can use [`AxisProcessor::with_processor`] or [`FromIterator<AxisProcessor>::from_iter`] methods.
///
/// ```rust
/// use std::sync::Arc;
Expand Down

0 comments on commit a9f31e1

Please sign in to comment.