summaryrefslogtreecommitdiffstats
path: root/tokio-util
diff options
context:
space:
mode:
authorOleg Nosov <olegnosov1@gmail.com>2019-11-27 23:05:42 +0300
committerCarl Lerche <me@carllerche.com>2019-11-27 12:05:42 -0800
commit942feab040e28d1e1547012a0fb81212299e6596 (patch)
tree190d456e68524115414c8c470970e94eaccacc96 /tokio-util
parentdc356a41589a6129ec5db375e0ab9baee8612b83 (diff)
doc: misc API documentation fixes (#1834)
Diffstat (limited to 'tokio-util')
-rw-r--r--tokio-util/src/codec/decoder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio-util/src/codec/decoder.rs b/tokio-util/src/codec/decoder.rs
index dfe5f8ee..3cdf2bd7 100644
--- a/tokio-util/src/codec/decoder.rs
+++ b/tokio-util/src/codec/decoder.rs
@@ -38,7 +38,7 @@ pub trait Decoder {
/// Attempts to decode a frame from the provided buffer of bytes.
///
/// This method is called by `FramedRead` whenever bytes are ready to be
- /// parsed. The provided buffer of bytes is what's been read so far, and
+ /// parsed. The provided buffer of bytes is what's been read so far, and
/// this instance of `Decode` can determine whether an entire frame is in
/// the buffer and is ready to be returned.
///