summaryrefslogtreecommitdiff
path: root/exercises/structs
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/structs
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/structs')
-rw-r--r--exercises/structs/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/structs/README.md b/exercises/structs/README.md
index 58e5a6a..3fc1fdc 100644
--- a/exercises/structs/README.md
+++ b/exercises/structs/README.md
@@ -1,8 +1,8 @@
-### Structs
+# Structs
Rust has three struct types: a classic C struct, a tuple struct, and a unit struct.
-#### Book Sections
+## Further information
- [Structures](https://doc.rust-lang.org/book/ch05-01-defining-structs.html)
- [Method Syntax](https://doc.rust-lang.org/book/ch05-03-method-syntax.html)