diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-02-08 17:36:08 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-02-08 17:36:08 -0500 |
commit | af049657eb4426f4c1e7c8aa603c6303c9a884cf (patch) | |
tree | 142061efbe6d106fd2a85f1a271ee13bb6cb28a4 /src/rust/protover | |
parent | d8307cb0e99d28daa4011e4e9d94e3f8c56cba23 (diff) | |
download | tor-af049657eb4426f4c1e7c8aa603c6303c9a884cf.tar.gz tor-af049657eb4426f4c1e7c8aa603c6303c9a884cf.zip |
Stop claiming that compute_for_old_tor() returns pairs
Diffstat (limited to 'src/rust/protover')
-rw-r--r-- | src/rust/protover/protover.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rust/protover/protover.rs b/src/rust/protover/protover.rs index f3a5ea23ef..069b1088cd 100644 --- a/src/rust/protover/protover.rs +++ b/src/rust/protover/protover.rs @@ -730,8 +730,8 @@ pub fn is_supported_here(proto: Proto, vers: u32) -> bool { /// /// # Returns /// -/// A `&'static [u8]` whose value is series of pairs, comprising of the protocol name -/// and versions that it supports. The string takes the following format: +/// A `&'static [u8]` encoding a list of protocol names and supported +/// versions. The string takes the following format: /// /// "HSDir=1-1 LinkAuth=1" /// |