Skip to content

Commit f2ea960

Browse files
authored
Fix typo (#506)
1 parent 5b808ff commit f2ea960

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

timely/src/dataflow/operators/capability.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ impl<T: Timestamp> InputCapability<T> {
283283
if self.summaries.borrow()[output_port].iter().flat_map(|summary| summary.results_in(self.time())).any(|time| time.less_equal(new_time)) {
284284
Capability::new(new_time.clone(), self.internal.borrow()[output_port].clone())
285285
} else {
286-
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());
286+
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());
287287
}
288288
}
289289

@@ -308,7 +308,7 @@ impl<T: Timestamp> InputCapability<T> {
308308
Capability::new(self_time, self.internal.borrow()[output_port].clone())
309309
}
310310
else {
311-
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);
311+
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);
312312
}
313313
}
314314
}

0 commit comments

Comments
 (0)