Fix a type name typo in visit_i64 documentation

This commit is contained in:
Konrad Borowski
2017-09-07 19:53:07 +02:00
committed by GitHub
parent d4042872f5
commit 8452e313cc
+1 -1
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>