mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-30 23:38:02 +00:00
Merge pull request #1045 from xfix/patch-1
Fix a type name typo in visit_i64 documentation
This commit is contained in:
+1
-1
@@ -1120,7 +1120,7 @@ pub trait Visitor<'de>: Sized {
|
|||||||
self.visit_i64(v as i64)
|
self.visit_i64(v as i64)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The input contains an `i32`.
|
/// The input contains an `i64`.
|
||||||
///
|
///
|
||||||
/// The default implementation fails with a type error.
|
/// The default implementation fails with a type error.
|
||||||
fn visit_i64<E>(self, v: i64) -> Result<Self::Value, E>
|
fn visit_i64<E>(self, v: i64) -> Result<Self::Value, E>
|
||||||
|
|||||||
Reference in New Issue
Block a user