From 79cc333dca8b6037d268ce5664040810bb3f1f7d Mon Sep 17 00:00:00 2001 From: Marek Kotewicz Date: Sun, 17 Jan 2016 15:14:25 +0100 Subject: [PATCH] fixed typo in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fec82608..cfa25179 100644 --- a/README.md +++ b/README.md @@ -398,7 +398,7 @@ struct I32Visitor; impl serde::de::Visitor for I32Visitor { type Value = i32; - fn visit_i16(&mut self, value: i16) -> Result + fn visit_i16(&mut self, value: i16) -> Result where E: Error, { self.visit_i32(value as i32)