From 5894f425b003c4d2baf261e090ec785ebf5929f7 Mon Sep 17 00:00:00 2001 From: Titouan Rigoudy Date: Thu, 11 Jun 2020 02:18:33 +0000 Subject: [PATCH] Fix typo in base_codec.rs --- src/proto/base_codec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto/base_codec.rs b/src/proto/base_codec.rs index 3045441..d44c16d 100644 --- a/src/proto/base_codec.rs +++ b/src/proto/base_codec.rs @@ -29,7 +29,7 @@ use encoding::{DecoderTrap, EncoderTrap, Encoding}; pub const U32_BYTE_LEN: usize = 4; pub trait Decode { - /// Attempts to decode an istance of `T` from `self`. + /// Attempts to decode an instance of `T` from `self`. fn decode(&mut self) -> io::Result; }