We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b5bab85 + 8257dbd commit 617ce85Copy full SHA for 617ce85
src/libstd/num/int_macros.rs
@@ -270,7 +270,7 @@ impl Integer for $T {
270
}
271
272
273
- /// Calculates `div` (`\`) and `rem` (`%`) simultaneously
+ /// Calculates `div` (`/`) and `rem` (`%`) simultaneously
274
#[inline]
275
fn div_rem(&self, other: &$T) -> ($T,$T) {
276
(*self / *other, *self % *other)
src/libstd/num/uint_macros.rs
@@ -123,7 +123,7 @@ impl Neg<$T> for $T {
123
impl Unsigned for $T {}
124
125
impl Integer for $T {
126
127
128
129
0 commit comments