summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarius Wiles <github@dariuswiles.com>2021-03-13 03:14:02 -0800
committerGitHub <noreply@github.com>2021-03-13 12:14:02 +0100
commit9f3e8c2dde645e5264c2d2200e68842b5f47bfa3 (patch)
tree52a643e1f7e1a4475a6912875ba5173cadd32903
parent96c56ab08a30835e9f4d2b6b83b75a0060726fbd (diff)
fix(structs3): reword heading comment (#664)
-rw-r--r--exercises/structs/structs3.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/exercises/structs/structs3.rs b/exercises/structs/structs3.rs
index f18cc92..8d8b471 100644
--- a/exercises/structs/structs3.rs
+++ b/exercises/structs/structs3.rs
@@ -1,7 +1,8 @@
// structs3.rs
-// Structs contain more than simply some data, they can also have logic, in this
-// exercise we have defined the Package struct and we want to test some logic attached to it,
-// make the code compile and the tests pass! If you have issues execute `rustlings hint structs3`
+// Structs contain data, but can also have logic. In this exercise we have
+// defined the Package struct and we want to test some logic attached to it.
+// Make the code compile and the tests pass!
+// If you have issues execute `rustlings hint structs3`
// I AM NOT DONE