From 9802c4c5f41791cdf9ea0049733e81f03eaeccab Mon Sep 17 00:00:00 2001 From: msiglreith Date: Sun, 30 Oct 2016 17:50:28 +0100 Subject: [PATCH] Fix typo in the BitAndAssign operator documentation --- src/libcore/ops.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/ops.rs b/src/libcore/ops.rs index 72e951a7c347c..3ce0d4a086ecc 100644 --- a/src/libcore/ops.rs +++ b/src/libcore/ops.rs @@ -1645,7 +1645,7 @@ rem_assign_impl! { usize u8 u16 u32 u64 isize i8 i16 i32 i64 f32 f64 } #[lang = "bitand_assign"] #[stable(feature = "op_assign_traits", since = "1.8.0")] pub trait BitAndAssign { - /// The method for the `&` operator + /// The method for the `&=` operator #[stable(feature = "op_assign_traits", since = "1.8.0")] fn bitand_assign(&mut self, Rhs); }