fix doc test for State

This commit is contained in:
Nikolay Kim 2018-10-01 22:29:30 -07:00
parent 368f73513a
commit fdfadb52e1
1 changed files with 1 additions and 1 deletions

View File

@ -530,7 +530,7 @@ where
/// }
///
/// /// extract path info using serde
/// fn index(state: State<MyApp>, path: Path<Info>)) -> String {
/// fn index(state: State<MyApp>, path: Path<Info>) -> String {
/// format!("{} {}!", state.msg, path.username)
/// }
///