From 61c90cb8cb24c58729025c880e5adc6284760d32 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 6 Nov 2017 23:45:26 -0800 Subject: [PATCH] Fix typo in serde_test::Configure documentation --- serde_test/src/configure.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serde_test/src/configure.rs b/serde_test/src/configure.rs index bb6c17f4..bec5f063 100644 --- a/serde_test/src/configure.rs +++ b/serde_test/src/configure.rs @@ -9,7 +9,7 @@ pub struct Readable(T); #[derive(Debug, PartialEq, Eq, PartialOrd, Ord)] pub struct Compact(T); -/// Trait which lets values mark wheter they should serialize or deserialize to or from their +/// Trait which lets values mark whether they should serialize or deserialize to or from their /// human-readable or compact representation. /// /// ```