From 6742041468eecd560a8d58b1fe94e66b833bbd32 Mon Sep 17 00:00:00 2001 From: philipp Date: Sun, 15 Jan 2023 11:46:01 +0100 Subject: [PATCH] Remove unnecessary word in state docs. --- site/guide/6-state.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/guide/6-state.md b/site/guide/6-state.md index fb16e516..b18fb15a 100644 --- a/site/guide/6-state.md +++ b/site/guide/6-state.md @@ -105,7 +105,7 @@ fn state(hit_count: &State, config: &State) { /* .. */ } refuse to start your application. This prevents what would have been an unmanaged state runtime error. Unmanaged state is detected at runtime through [_sentinels_](@api/rocket/trait.Sentinel.html), so there are limitations. If a - limitation is hit, Rocket still won't call an the offending route. Instead, + limitation is hit, Rocket still won't call the offending route. Instead, Rocket will log an error message and return a **500** error to the client. You can find a complete example using the `HitCount` structure in the [state