Merge pull request #1045 from xfix/patch-1

Fix a type name typo in visit_i64 documentation
This commit is contained in:
David Tolnay 2017-09-07 12:07:03 -07:00 committed by GitHub
commit ba260b0e5f

View File

@ -1120,7 +1120,7 @@ pub trait Visitor<'de>: Sized {
self.visit_i64(v as i64)
}
/// The input contains an `i32`.
/// The input contains an `i64`.
///
/// The default implementation fails with a type error.
fn visit_i64<E>(self, v: i64) -> Result<Self::Value, E>