Fixes incorrect paranthesis.

This commit is contained in:
Abhijit Gadgil 2020-11-01 09:08:19 +05:30
parent 66d68cdc6f
commit 7c88bcc3f6

View File

@ -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())
/// }
/// }