diff --git a/src/lib.rs b/src/lib.rs index c04a44e..9473c47 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -58,6 +58,8 @@ pub struct CaesarEngine { shifted_alphabet: Vec, } +// Yet a useful comment for batch-merge + impl CaesarEngine { /// Creates a new pub fn new(shift: Shift) -> Self { @@ -133,6 +135,8 @@ pub struct ClearText { message: String, } +// Another comment which won't fail at rebase + impl ClearText { pub fn try_new(message: T) -> Result { let message = message.to_string();