Skip to content

Commit 6b5bb87

Browse files
committed
test: Remove unnecessary clone()
1 parent 9cc7f03 commit 6b5bb87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
//! cipher.apply_keystream(&mut buf);
3333
//! assert_eq!(buf, ciphertext);
3434
//!
35-
//! let mut ciphertext = buf;
35+
//! let ciphertext = buf;
3636
//!
3737
//! // Decrypt ciphertext by applying keystream again.
3838
//! let mut cipher = KCipher2::new(&key.into(), &nonce.into());

0 commit comments

Comments
 (0)