Skip to content

Commit

Permalink
login-session example: fix a spelling mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
vmiklos authored and bradfier committed Oct 12, 2022
1 parent 820ffb9 commit 4d9d9ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/login-session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ fn handle_route(request: &Request, session_data: &mut Option<SessionData>) -> Re
_ => ()
);

// We that we handled all the routes that are accessible in all circumstances, we check
// Now that we handled all the routes that are accessible in all circumstances, we check
// that the user is logged in before proceeding.
if let Some(session_data) = session_data.as_ref() {
// Logged in.
Expand Down

0 comments on commit 4d9d9ce

Please sign in to comment.