diff --git a/src/rlp.rs b/src/rlp.rs index bf8cbd68e..21f026116 100644 --- a/src/rlp.rs +++ b/src/rlp.rs @@ -322,7 +322,7 @@ impl<'a> UntrustedRlp<'a> { /// return first item info /// - /// TODO: move this to decode_untrustedr? + /// TODO: move this to decoder (?) fn item_info(bytes: &[u8]) -> Result { let item = match bytes.first().map(|&x| x) { None => return Err(DecoderError::RlpIsTooShort),