Rust: Remove newline.

This commit is contained in:
Geoffrey White
2025-08-11 11:51:21 +01:00
parent 1965fdb158
commit 3382d06ede

View File

@@ -1,4 +1,3 @@
fn encrypt(text: String, encryption_key: &aes_gcm::Key<Aes256Gcm>) -> String {
// encrypt text -> ciphertext
let cipher = Aes256Gcm::new(&encryption_key);