From 69afb5c4a30d9a48530387cf7e3c290c09d2308a Mon Sep 17 00:00:00 2001 From: Flarp Date: Mon, 17 Jul 2017 10:31:21 -0400 Subject: [PATCH] Fix typo in 'NotFound' docs: 404, not 400. --- lib/src/http/status.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/http/status.rs b/lib/src/http/status.rs index 7e767a91..9601b42a 100644 --- a/lib/src/http/status.rs +++ b/lib/src/http/status.rs @@ -61,7 +61,7 @@ impl StatusClass { /// let ok = Status::Ok; /// ``` /// -/// A status of `400 Not Found` can be insantiated via the `NotFound` constant: +/// A status of `404 Not Found` can be insantiated via the `NotFound` constant: /// /// ```rust /// use rocket::http::Status;