diff --git a/crates/tor-cell/src/relaycell/hs/ext.rs b/crates/tor-cell/src/relaycell/hs/ext.rs index 99634fb64..2eb264674 100644 --- a/crates/tor-cell/src/relaycell/hs/ext.rs +++ b/crates/tor-cell/src/relaycell/hs/ext.rs @@ -37,7 +37,9 @@ impl Default for ExtList { } /// An kind of extension that can be used with some kind of HS-related message. /// -/// Each extendible message will likely declare its own variant of this trait. +/// Each extendible message will likely define its own enum, +/// implementing this trait, +/// representing the possible extensions. pub(super) trait ExtGroup: Readable + Writeable { /// An identifier kind used with this sort of extension type Id: From + Into + Eq + PartialEq + Ord + Copy;