summaryrefslogtreecommitdiff
path: root/exercises/move_semantics
diff options
context:
space:
mode:
authorliv <liv@fastmail.com>2019-01-23 21:02:06 +0100
committerliv <liv@fastmail.com>2019-01-23 21:02:06 +0100
commita49a22071ab0c675e43e03ab9c08b0153d8f9c74 (patch)
tree20348ceb53e94aca5a63c207b6685f0501f1f03f /exercises/move_semantics
parentdc1f3b79f8b528659e39057ac733d07e1051bc4d (diff)
redo the section readmes
Diffstat (limited to 'exercises/move_semantics')
-rw-r--r--exercises/move_semantics/README.md13
1 files changed, 8 insertions, 5 deletions
diff --git a/exercises/move_semantics/README.md b/exercises/move_semantics/README.md
index c8095bf..1b9cab7 100644
--- a/exercises/move_semantics/README.md
+++ b/exercises/move_semantics/README.md
@@ -1,7 +1,10 @@
-These exercises are adapted from [pnkfelix](https://github.com/rustlings/rustlings/blob/master)'s [Rust Tutorial](https://pnkfelix.github.io/rust-examples-icfp2014/) -- Thank you Felix!!!
+### Move Semantics
-For this exercise check out the chapters:
-- [Ownership](https://doc.rust-lang.org/book/2018-edition/ch04-01-what-is-ownership.html)
-- [Reference and borrowing](https://doc.rust-lang.org/book/2018-edition/ch04-02-references-and-borrowing.html)
+These exercises are adapted from [pnkfelix](https://github.com/pnkfelix)'s [Rust Tutorial](https://pnkfelix.github.io/rust-examples-icfp2014/) -- Thank you Felix!!!
-of the Rust Book. \ No newline at end of file
+#### Book Sections
+
+For this section, the book links are especially important.
+
+- [Ownership](https://doc.rust-lang.org/stable/book/ch04-01-what-is-ownership.html)
+- [Reference and borrowing](https://doc.rust-lang.org/stable/book/ch04-02-references-and-borrowing.html)