From 7468a822761642e7498a43d1b49ca8fc4bf292d7 Mon Sep 17 00:00:00 2001 From: nooberfsh Date: Thu, 23 Feb 2023 18:18:16 +0800 Subject: [PATCH] Fix typo --- timely/src/dataflow/operators/capability.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/timely/src/dataflow/operators/capability.rs b/timely/src/dataflow/operators/capability.rs index 8afb7f509..5caa9bce8 100644 --- a/timely/src/dataflow/operators/capability.rs +++ b/timely/src/dataflow/operators/capability.rs @@ -283,7 +283,7 @@ impl InputCapability { if self.summaries.borrow()[output_port].iter().flat_map(|summary| summary.results_in(self.time())).any(|time| time.less_equal(new_time)) { Capability::new(new_time.clone(), self.internal.borrow()[output_port].clone()) } else { - panic!("Attempted to delay to a time ({:?}) not greater or equal to the operators input-output summary ({:?}) applied to the capabilies time ({:?})", new_time, self.summaries.borrow()[output_port], self.time()); + panic!("Attempted to delay to a time ({:?}) not greater or equal to the operators input-output summary ({:?}) applied to the capabilities time ({:?})", new_time, self.summaries.borrow()[output_port], self.time()); } } @@ -308,7 +308,7 @@ impl InputCapability { Capability::new(self_time, self.internal.borrow()[output_port].clone()) } else { - panic!("Attempted to retain a time ({:?}) not greater or equal to the operators input-output summary ({:?}) applied to the capabilies time ({:?})", self_time, self.summaries.borrow()[output_port], self_time); + panic!("Attempted to retain a time ({:?}) not greater or equal to the operators input-output summary ({:?}) applied to the capabilities time ({:?})", self_time, self.summaries.borrow()[output_port], self_time); } } }