diff --git a/site/guide/state.md b/site/guide/state.md index bfbc57d1..522e4375 100644 --- a/site/guide/state.md +++ b/site/guide/state.md @@ -72,7 +72,7 @@ fn state(hit_count: State, config: State) -> T { ... } ### Within Guards It can also be useful to retrieve managed state from a `FromRequest` -implementation. To do so, simple invoke `State` as a guard using the +implementation. To do so, simply invoke `State` as a guard using the [`Request::guard()`] method. ```rust