summaryrefslogtreecommitdiff
path: root/exercises/generics
diff options
context:
space:
mode:
authorJohn Heath <6026956+CaribouJohn@users.noreply.github.com>2020-08-24 22:37:31 +0100
committerGitHub <noreply@github.com>2020-08-24 22:37:31 +0100
commitdd54ccf6777873b75e01ad6fbcf247c7de21994d (patch)
treed886ecc3c8fadca858fcf112c0e02ad71f3f55fe /exercises/generics
parent66ec916b3d01d50053831b66e7f2b728adc079ee (diff)
Make comments on example clearer
I actually struggled because I overlooked the fact that I needed to change the 2.1 to "A+". So I wanted to make things clearer for future rustlings.
Diffstat (limited to 'exercises/generics')
-rw-r--r--exercises/generics/generics3.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/exercises/generics/generics3.rs b/exercises/generics/generics3.rs
index 5c745e2..6f95145 100644
--- a/exercises/generics/generics3.rs
+++ b/exercises/generics/generics3.rs
@@ -4,8 +4,11 @@
// However, the school also issues alphabetical grades (A+ -> F-) and needs
// to be able to print both types of report card!
-// Make the necessary code changes to support alphabetical report cards, thereby making
-// the second test pass.
+// Make the necessary code changes in the struct ReportCard and the impl block
+// to support alphabetical report cards. Change the Grade in the second test to "A+"
+// to show that your changes allow alphabetical grades.
+
+// Execute 'rustlings hint generics3' for hints!
// I AM NOT DONE