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`,"
This commit is contained in:
Matt Nield 2023-10-13 15:28:14 -04:00 committed by GitHub
parent b97c88f202
commit 5374811f96
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -658,7 +658,7 @@ name = "errors1"
path = "exercises/error_handling/errors1.rs" path = "exercises/error_handling/errors1.rs"
mode = "test" mode = "test"
hint = """ 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`. is that `generate_nametag_text` should return a `Result` instead of an `Option`.
To make this change, you'll need to: To make this change, you'll need to: