fixed typo in readme

This commit is contained in:
Marek Kotewicz 2016-01-17 15:14:25 +01:00
parent 1ced6db73e
commit 79cc333dca

View File

@ -398,7 +398,7 @@ struct I32Visitor;
impl serde::de::Visitor for I32Visitor { impl serde::de::Visitor for I32Visitor {
type Value = i32; type Value = i32;
fn visit_i16<E>(&mut self, value: i16) -> Result<i16, E> fn visit_i16<E>(&mut self, value: i16) -> Result<i32, E>
where E: Error, where E: Error,
{ {
self.visit_i32(value as i32) self.visit_i32(value as i32)