summaryrefslogtreecommitdiff
path: root/exercises/generics/generics3.rs
diff options
context:
space:
mode:
authorKoalab99 <60042855+Koalab99@users.noreply.github.com>2020-08-27 19:51:19 +0200
committerGitHub <noreply@github.com>2020-08-27 19:51:19 +0200
commitee7cdc66b31673c0fb02de0ce732812f855e69e8 (patch)
treee2a2d62805e0517060c9a8beec4297259a40a487 /exercises/generics/generics3.rs
parent9699da4968b19ab8925890b81169664fa7699ce5 (diff)
chore: Removed extra whitespaces
Co-authored-by: Corentin ARNOULD <corentin.arn@gmail.com>
Diffstat (limited to 'exercises/generics/generics3.rs')
-rw-r--r--exercises/generics/generics3.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/generics/generics3.rs b/exercises/generics/generics3.rs
index 6f95145..64dd9bc 100644
--- a/exercises/generics/generics3.rs
+++ b/exercises/generics/generics3.rs
@@ -4,8 +4,8 @@
// 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 in the struct ReportCard and the impl block
-// to support alphabetical report cards. Change the Grade in the second test to "A+"
+// 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!