From 0dfbc542ca3b1b9ec9fc31ccb70b57f5e01e3990 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Wed, 8 Mar 2023 13:30:13 +0100 Subject: [PATCH] Fix word in doc comment --- crates/fj-kernel/src/builder/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/fj-kernel/src/builder/mod.rs b/crates/fj-kernel/src/builder/mod.rs index f88f695c2..0facf369a 100644 --- a/crates/fj-kernel/src/builder/mod.rs +++ b/crates/fj-kernel/src/builder/mod.rs @@ -47,7 +47,7 @@ pub trait ObjectArgument: IntoIterator { /// Create a return value by mapping the implementing type /// - /// Provides access to the (circular) next item. + /// Provides access to the (circular) previous item. fn map_with_prev(self, f: F) -> Self::SameSize where F: FnMut(T, T) -> R,