Remove extraneous 'to' in state guide.

This commit is contained in:
Vishal Sodani 2018-11-13 20:17:11 +05:30 committed by Sergio Benitez
parent 3b6c4d2a5f
commit d813883fa5
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ The process for using managed state is simple:
! note: All managed state must be thread-safe.
Because Rocket automatically multithreads your application, handlers can to
Because Rocket automatically multithreads your application, handlers can
concurrently access managed state. As a result, managed state must be
thread-safe. Thanks to Rust, this condition is checked at compile-time by
ensuring that the type of values you store in managed state implement `Send` +