summaryrefslogtreecommitdiff
path: root/exercises/conversions/using_as.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/conversions/using_as.rs')
-rw-r--r--exercises/conversions/using_as.rs16
1 files changed, 10 insertions, 6 deletions
diff --git a/exercises/conversions/using_as.rs b/exercises/conversions/using_as.rs
index 8c9b711..414cef3 100644
--- a/exercises/conversions/using_as.rs
+++ b/exercises/conversions/using_as.rs
@@ -1,10 +1,14 @@
-// Type casting in Rust is done via the usage of the `as` operator.
-// Please note that the `as` operator is not only used when type casting.
-// It also helps with renaming imports.
+// using_as.rs
//
-// The goal is to make sure that the division does not fail to compile
-// and returns the proper type.
-// Execute `rustlings hint using_as` or use the `hint` watch subcommand for a hint.
+// Type casting in Rust is done via the usage of the `as` operator. Please note
+// that the `as` operator is not only used when type casting. It also helps with
+// renaming imports.
+//
+// The goal is to make sure that the division does not fail to compile and
+// returns the proper type.
+//
+// Execute `rustlings hint using_as` or use the `hint` watch subcommand for a
+// hint.
// I AM NOT DONE