From 2a374e60afefb0c1206da44cc992954e218b7403 Mon Sep 17 00:00:00 2001 From: Matt Jibson Date: Tue, 3 Nov 2020 11:04:13 -0700 Subject: [PATCH] correct spelling --- timely/src/progress/frontier.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/timely/src/progress/frontier.rs b/timely/src/progress/frontier.rs index 05e5f785e..9b673a3ec 100644 --- a/timely/src/progress/frontier.rs +++ b/timely/src/progress/frontier.rs @@ -213,7 +213,7 @@ impl From> for Antichain { /// The type `T` must implement `PartialOrder` as well as `Ord`. The implementation of the `Ord` trait /// is used to efficiently organize the updates for cancellation, and to efficiently determine the lower /// bounds, and only needs to not contradict the `PartialOrder` implementation (that is, if `PartialOrder` -/// orders two elements, the so does the `Ord` implementation). +/// orders two elements, then so does the `Ord` implementation). /// /// The `MutableAntichain` implementation is done with the intent that updates to it are done in batches, /// and it is acceptable to rebuild the frontier from scratch when a batch of updates change it. This means @@ -611,4 +611,4 @@ impl<'a, T: 'a> ::std::iter::IntoIterator for &'a AntichainRef<'a, T> { fn into_iter(self) -> Self::IntoIter { self.iter() } -} \ No newline at end of file +}