summaryrefslogtreecommitdiff
path: root/exercises/conversions
diff options
context:
space:
mode:
authorZerotask <Zerotask@users.noreply.github.com>2021-04-23 19:54:31 +0200
committerZerotask <Zerotask@users.noreply.github.com>2021-04-23 19:54:31 +0200
commit249ad44cc03974fd34708c23d9832b1729c6e844 (patch)
treedb25c5f51d76d10bc129dbcc8df2c56c75b13f2b /exercises/conversions
parent54804e344d84bb620447b7975a5b8ec4f9de2671 (diff)
docs(exercises): updated all exercises readme files
all exercises readme files now have a unified structure and a description
Diffstat (limited to 'exercises/conversions')
-rw-r--r--exercises/conversions/README.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/exercises/conversions/README.md b/exercises/conversions/README.md
index 114bd42..8d7da93 100644
--- a/exercises/conversions/README.md
+++ b/exercises/conversions/README.md
@@ -1,5 +1,4 @@
-### Type conversions
-
+# Type conversions
Rust offers a multitude of ways to convert a value of a given type into another type.
@@ -15,6 +14,8 @@ Furthermore, the `std::str` module offers a trait called [`FromStr`](https://doc
These should be the main ways ***within the standard library*** to convert data into your desired types.
-#### Book Sections
+## Further information
-These are not directly covered in the book, but the standard library has great documentation for [conversions here](https://doc.rust-lang.org/std/convert/index.html). The `FromStr` trait is also covered [here](https://doc.rust-lang.org/std/str/trait.FromStr.html). \ No newline at end of file
+These are not directly covered in the book, but the standard library has a great documentation for it.
+- [conversions](https://doc.rust-lang.org/std/convert/index.html)
+- [`FromStr` trait](https://doc.rust-lang.org/std/str/trait.FromStr.html) \ No newline at end of file