diff options
| author | Abhijit Gadgil <gabhijit@iitbombay.org> | 2020-11-01 09:08:19 +0530 |
|---|---|---|
| committer | Abhijit Gadgil <gabhijit@iitbombay.org> | 2020-11-01 09:08:19 +0530 |
| commit | 7c88bcc3f6a055093eafff8d4cfb1dfcd813ebbe (patch) | |
| tree | 396f13ecfdbf76a3e3464a841059f195a9f11ab8 | |
| parent | 66d68cdc6f5bb508052b890f8766a84a98533865 (diff) | |
| download | rust-7c88bcc3f6a055093eafff8d4cfb1dfcd813ebbe.tar.gz rust-7c88bcc3f6a055093eafff8d4cfb1dfcd813ebbe.zip | |
Fixes incorrect paranthesis.
| -rw-r--r-- | library/core/src/ops/bit.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/ops/bit.rs b/library/core/src/ops/bit.rs index 3dae57938be..b91f87be90a 100644 --- a/library/core/src/ops/bit.rs +++ b/library/core/src/ops/bit.rs @@ -307,7 +307,7 @@ bitor_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } /// assert_eq!(lhs.len(), rhs.len()); /// Self(lhs.iter() /// .zip(rhs.iter()) -/// .map(|(x, y)| *x ^ *y)) +/// .map(|(x, y)| *x ^ *y) /// .collect()) /// } /// } |
