From e7c8cc69d29a5f94b31122b705a78c4728f8a25f Mon Sep 17 00:00:00 2001
From: Darius Wiles <github@dariuswiles.com>
Date: Mon, 8 Mar 2021 16:13:47 -0800
Subject: [PATCH] fix: reword heading comment

---
 exercises/structs/structs3.rs | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/exercises/structs/structs3.rs b/exercises/structs/structs3.rs
index 06fcaf2..ed36f3e 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