summaryrefslogtreecommitdiff
path: root/rustlings-macros
diff options
context:
space:
mode:
Diffstat (limited to 'rustlings-macros')
-rw-r--r--rustlings-macros/info.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/rustlings-macros/info.toml b/rustlings-macros/info.toml
index 5a47c85..3d8da58 100644
--- a/rustlings-macros/info.toml
+++ b/rustlings-macros/info.toml
@@ -647,8 +647,8 @@ is that `generate_nametag_text` should return a `Result` instead of an `Option`.
To make this change, you'll need to:
- update the return type in the function signature to be a `Result<String,
String>` that could be the variants `Ok(String)` and `Err(String)`
- - change the body of the function to return `Ok(stuff)` where it currently
- returns `Some(stuff)`
+ - change the body of the function to return `Ok(…)` where it currently
+ returns `Some(…)`
- change the body of the function to return `Err(error message)` where it
currently returns `None`"""