summaryrefslogtreecommitdiff
path: root/exercises/quiz2.rs
diff options
context:
space:
mode:
authorEmmanuel Roullit <eroullit@github.com>2023-02-25 17:11:43 +0100
committerGitHub <noreply@github.com>2023-02-25 17:11:43 +0100
commitfcadbfc70d578e4a993711d5a7f1737aebd6b3ce (patch)
tree897142c1904755a43aefce56695c0b8186381e69 /exercises/quiz2.rs
parentb653d4848a52701d2240f130ab74c158dd5d7069 (diff)
parent701b4bef51b50d1fd3bb7fbfe3cc274f2bbdcb0c (diff)
Merge branch 'rust-lang:main' into codespaces
Diffstat (limited to 'exercises/quiz2.rs')
-rw-r--r--exercises/quiz2.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/quiz2.rs b/exercises/quiz2.rs
index 606d3c7..5c42dae 100644
--- a/exercises/quiz2.rs
+++ b/exercises/quiz2.rs
@@ -6,7 +6,7 @@
// - Modules
// - Enums
-// Let's build a little machine in form of a function.
+// Let's build a little machine in the form of a function.
// As input, we're going to give a list of strings and commands. These commands
// determine what action is going to be applied to the string. It can either be:
// - Uppercase the string
@@ -42,7 +42,7 @@ mod my_module {
#[cfg(test)]
mod tests {
- // TODO: What do we have to import to have `transformer` in scope?
+ // TODO: What do we need to import to have `transformer` in scope?
use ???;
use super::Command;