Skip to content

Commit

Permalink
Merge pull request #92 from cmtm/patch-1
Browse files Browse the repository at this point in the history
Fix documentation typo
  • Loading branch information
nellshamrell committed May 28, 2020
2 parents 651ebfe + 7b9c95f commit fb52bbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/01_getting_started/05_http_server_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ the request URI, HTTP version, headers, and other metadata. For example, we
can print out the URI of the request like this:

```rust,ignore
println!("Got request at {:?}", req.uri());
println!("Got request at {:?}", _req.uri());
```

You may have noticed that we're not yet doing
Expand Down

0 comments on commit fb52bbf

Please sign in to comment.