From b10c23a9503cfd40462fb9363a8a4e8b2ee0c7b6 Mon Sep 17 00:00:00 2001 From: Benjamin Lee Date: Sun, 18 Aug 2019 22:37:28 -0700 Subject: [PATCH] Fixed a typo --- serde/src/de/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serde/src/de/mod.rs b/serde/src/de/mod.rs index 896b1a600..4c8f65aab 100644 --- a/serde/src/de/mod.rs +++ b/serde/src/de/mod.rs @@ -787,7 +787,7 @@ where /// /// The role of this trait is to define the deserialization half of the [Serde /// data model], which is a way to categorize every Rust data type into one of -/// 29 possible types. Each method of the `Serializer` trait corresponds to one +/// 29 possible types. Each method of the `Deserializer` trait corresponds to one /// of the types of the data model. /// /// Implementations of `Deserialize` map themselves into this data model by