Merge pull request #33 from louy2/patch-3
authorRalf Jung <post@ralfj.de>
Sun, 31 Mar 2019 14:30:13 +0000 (16:30 +0200)
committerGitHub <noreply@github.com>
Sun, 31 Mar 2019 14:30:13 +0000 (16:30 +0200)
Add exercise 10.2 (#24)

README.md
src/part06.rs

index e7068ac86a7a95075a2575c674397180b7e81904..be0e4fb9d79875e94954084d6fef2916830b6f42 100644 (file)
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ The most accessible form of the tutorial is its
 
 You can either read through the sources in `src/`, or generate the
 HTML in `docs/` using `make docs` (this step needs
-[Pycco](https://fitzgen.github.io/pycco/)).
+[Pycco](https://pycco-docs.github.io/pycco/)).
 
 The files `workspace/src/part*.rs` are generated by `make workspace`.
 
index 21fe644758fc7813a7a7cae1b53698005bbcb1b2..939fe081f8d601ad09b216bcb0f4990943159b36 100644 (file)
@@ -162,7 +162,7 @@ fn rust_foo(mut v: Vec<i32>) -> i32 {
 //@ application code. Most of the time, we don't have to explicitly add lifetimes to function
 //@ types. This is thanks to *lifetime elision*, where Rust will automatically insert lifetimes we
 //@ did not specify, following some simple, well-documented
-//@ [rules](https://doc.rust- lang.org/stable/book/lifetimes.html#lifetime-elision).
+//@ [rules](https://doc.rust-lang.org/stable/book/lifetimes.html#lifetime-elision).
 
 //@ [index](main.html) | [previous](part05.html) | [raw source](workspace/src/part06.rs) |
 //@ [next](part07.html)