summaryrefslogtreecommitdiff
path: root/info.toml
diff options
context:
space:
mode:
authorMatt Nield <64328730+matthewjnield@users.noreply.github.com>2023-10-13 15:28:14 -0400
committerGitHub <noreply@github.com>2023-10-13 15:28:14 -0400
commit5374811f961d6e9f9cf685595b5e1e1002b0a011 (patch)
tree24d09221d740b23d4a958bb13452ddba1496d575 /info.toml
parentb97c88f202b9b9c6f635748198203f2dd5b5cfbe (diff)
chore(errors1): fix grammar typo in hint for exercise errors1
This commit corrects a grammar typo in the hint of the errors1 exercise, changing from: "`Ok` and `Err` are one of the variants of `Result`," to: "`Ok` and `Err` are the two variants of `Result`,"
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/info.toml b/info.toml
index e3f66e2..02599fc 100644
--- a/info.toml
+++ b/info.toml
@@ -658,7 +658,7 @@ name = "errors1"
path = "exercises/error_handling/errors1.rs"
mode = "test"
hint = """
-`Ok` and `Err` are one of the variants of `Result`, so what the tests are saying
+`Ok` and `Err` are the two variants of `Result`, so what the tests are saying
is that `generate_nametag_text` should return a `Result` instead of an `Option`.
To make this change, you'll need to: