From 937fe50ad78a9b260a3484f4bdd56965d79fe3ee Mon Sep 17 00:00:00 2001 From: Josh Holmer Date: Thu, 16 Feb 2017 21:56:44 -0500 Subject: [PATCH] Fix typo in json example. --- examples/json/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/json/src/main.rs b/examples/json/src/main.rs index 1b1fb424..4f4d1002 100644 --- a/examples/json/src/main.rs +++ b/examples/json/src/main.rs @@ -25,7 +25,7 @@ struct Message { contents: String } -// TODO: This example can be improved by using `route` with muliple HTTP verbs. +// TODO: This example can be improved by using `route` with multiple HTTP verbs. #[post("/", format = "application/json", data = "")] fn new(id: ID, message: JSON, map: State) -> JSON { let mut hashmap = map.lock().expect("map lock.");