summaryrefslogtreecommitdiff
path: root/crates/tor-socksproto/src/handshake
diff options
context:
space:
mode:
Diffstat (limited to 'crates/tor-socksproto/src/handshake')
-rw-r--r--crates/tor-socksproto/src/handshake/framework.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/tor-socksproto/src/handshake/framework.rs b/crates/tor-socksproto/src/handshake/framework.rs
index daa749e1c..ad458a43b 100644
--- a/crates/tor-socksproto/src/handshake/framework.rs
+++ b/crates/tor-socksproto/src/handshake/framework.rs
@@ -196,11 +196,11 @@ impl<'b, O, P: ReadPrecision> Finished<'b, O, P> {
/// Return the output, and the following already-read data as a `Vec`
///
- /// The `Vec` is quite likely to have a considerably larger capacity than contnets.
+ /// The `Vec` is quite likely to have a considerably larger capacity than contents.
/// (Its capacity is usually the original buffer size, when the `Buffer` was created.)
///
/// The `Buffer` should not be discarded after calling this;
- /// it will not be useable.
+ /// it will not be usable.
//
// Ideally, this would *consume* the Buffer. But that would mean that
// `step` would have to take and return the buffer,