From 100e365bc653089d54319355a8dea99b28a77a15 Mon Sep 17 00:00:00 2001 From: lafleur Date: Sun, 28 Nov 2021 16:42:27 +0100 Subject: docstrings update + typography --- src/expr/bitwise.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/expr/bitwise.rs') diff --git a/src/expr/bitwise.rs b/src/expr/bitwise.rs index 59ef41b..d34d22c 100644 --- a/src/expr/bitwise.rs +++ b/src/expr/bitwise.rs @@ -10,8 +10,8 @@ pub struct Bitwise { } impl Bitwise { - /// Returns a new `Bitwise` instance that first masks the value it's applied to with `mask` - /// and then performs xor with the value in `xor`. + /// Returns a new `Bitwise` instance that first masks the value it's applied to with `mask` and + /// then performs xor with the value in `xor`. pub fn new(mask: M, xor: X) -> Self { Self { mask, xor } } -- cgit v1.2.3