Skip to content

Commit fb52bbf

Browse files
authored
Merge pull request #92 from cmtm/patch-1
Fix documentation typo
2 parents 651ebfe + 7b9c95f commit fb52bbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/01_getting_started/05_http_server_example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ the request URI, HTTP version, headers, and other metadata. For example, we
3636
can print out the URI of the request like this:
3737

3838
```rust,ignore
39-
println!("Got request at {:?}", req.uri());
39+
println!("Got request at {:?}", _req.uri());
4040
```
4141

4242
You may have noticed that we're not yet doing

0 commit comments

Comments
 (0)