From 8c7ce9b66b990cf5a749b02d98eaa0de4eb9065c Mon Sep 17 00:00:00 2001
From: Matt Johnston <matt@ucc.asn.au>
Date: Sat, 19 Nov 2022 20:56:18 +0800
Subject: [PATCH] Reword some sshnames comments

---
 src/sshnames.rs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/sshnames.rs b/src/sshnames.rs
index 97b179b..9b5bb6d 100644
--- a/src/sshnames.rs
+++ b/src/sshnames.rs
@@ -3,7 +3,7 @@
 //! Some identifiers are also listed directly in `packet.rs` derive attributes.
 //! Packet numbers are listed in `packets.rs`.
 //!
-//! This module also serves as index of SSH specifications.
+//! This module also serves as an index of SSH specifications.
 
 /// [RFC8731](https://tools.ietf.org/html/rfc8731)
 pub const SSH_NAME_CURVE25519: &str = "curve25519-sha256";
@@ -29,8 +29,8 @@ pub const SSH_NAME_AES256_CTR: &str = "aes256-ctr";
 /// OpenSSH [PROTOCOL.chacha20poly1305.txt](https://cvsweb.openbsd.org/src/usr.bin/ssh/PROTOCOL.chacha20poly1305?annotate=HEAD)
 pub const SSH_NAME_CHAPOLY: &str = "chacha20-poly1305@openssh.com";
 /// OpenSSH [PROTOCOL](https://cvsweb.openbsd.org/src/usr.bin/ssh/PROTOCOL?annotate=HEAD).
-/// (No-one uses aes-gcm [RFC5647](https://tools.ietf.org/html/rfc5647) from the NSA, it fails to define mac negotiation
-/// sensibly and has horrible naming style)
+/// (No-one directly uses `AEAD_AES_256_GCM` [RFC5647](https://tools.ietf.org/html/rfc5647) from the NSA, it fails to define mac negotiation
+/// sensibly and has incongruous naming style)
 pub const SSH_NAME_AES256_GCM: &str = "aes256-gcm@openssh.com";
 
 /// [RFC6668](https://tools.ietf.org/html/rfc6668)
-- 
GitLab