Skip to content

Commit 5374811

Browse files
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`,"
1 parent b97c88f commit 5374811

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

info.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ name = "errors1"
658658
path = "exercises/error_handling/errors1.rs"
659659
mode = "test"
660660
hint = """
661-
`Ok` and `Err` are one of the variants of `Result`, so what the tests are saying
661+
`Ok` and `Err` are the two variants of `Result`, so what the tests are saying
662662
is that `generate_nametag_text` should return a `Result` instead of an `Option`.
663663
664664
To make this change, you'll need to:

0 commit comments

Comments
 (0)