We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8d1462 commit 209c296Copy full SHA for 209c296
library/core/src/iter/traits/accum.rs
@@ -146,7 +146,8 @@ macro_rules! saturating_integer_sum_product {
146
)*);
147
($($a:ty)*) => (
148
saturating_integer_sum_product!(@impls Saturating(0), Saturating(1),
149
- "The short-circuiting behavior of this implementation is unspecified. If you care about short-circuiting, use [`Iterator::fold`] directly.",
+ "The short-circuiting behavior of this implementation is unspecified. If you care about "\
150
+ "short-circuiting, use [`Iterator::fold`] directly.",
151
#[stable(feature = "saturating_iter_arith", since = "CURRENT_RUSTC_VERSION")],
152
$(Saturating<$a>)*);
153
);
0 commit comments