From 3505c839c2b1549a85a1e87a457e7b0235893307 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 10 May 2026 20:51:47 -0600 Subject: [PATCH] ssh-cipher: rustdoc fixup --- ssh-cipher/src/lib.rs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/ssh-cipher/src/lib.rs b/ssh-cipher/src/lib.rs index f452a0d..1c796d2 100644 --- a/ssh-cipher/src/lib.rs +++ b/ssh-cipher/src/lib.rs @@ -123,16 +123,16 @@ impl Cipher { /// Decode cipher algorithm from the given `ciphername`. /// /// # Supported cipher names - /// `aes128-cbc` - /// `aes192-cbc` - /// `aes256-cbc` - /// `aes128-ctr` - /// `aes192-ctr` - /// `aes256-ctr` - /// `aes128-gcm@openssh.com` - /// `aes256-gcm@openssh.com` - /// `chacha20-poly1305@openssh.com` - /// `3des-cbc` + /// - `aes128-cbc` + /// - `aes192-cbc` + /// - `aes256-cbc` + /// - `aes128-ctr` + /// - `aes192-ctr` + /// - `aes256-ctr` + /// - `aes128-gcm@openssh.com` + /// - `aes256-gcm@openssh.com` + /// - `chacha20-poly1305@openssh.com` + /// - `3des-cbc` /// /// # Errors /// Returns [`LabelError`] if the provided `ciphername` is unknown.