Skip to content

Commit

Permalink
Fix a typo in sse comment (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrobbel authored and seanmonstar committed Nov 12, 2019
1 parent d6eb969 commit 54959d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/sse_chat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async fn main() {
pretty_env_logger::init();

// Keep track of all connected users, key is usize, value
// is a event stream sender.
// is an event stream sender.
let users = Arc::new(Mutex::new(HashMap::new()));
// Turn our "state" into a new Filter...
let users = warp::any().map(move || users.clone());
Expand Down

0 comments on commit 54959d6

Please sign in to comment.