diff options
| author | mo8it <mo8it@proton.me> | 2024-06-21 23:18:25 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-06-21 23:18:25 +0200 |
| commit | 2901d856627889e5a52dcf9f97d1c77032081c08 (patch) | |
| tree | e29dc309b8e081157a53f16fb3dd42da2f23302f /rustlings-macros | |
| parent | 020711fa97e3be57f9e0098d6b9a329deec5a754 (diff) | |
enums3 solution
Diffstat (limited to 'rustlings-macros')
| -rw-r--r-- | rustlings-macros/info.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rustlings-macros/info.toml b/rustlings-macros/info.toml index a992104..46a2c4b 100644 --- a/rustlings-macros/info.toml +++ b/rustlings-macros/info.toml @@ -457,12 +457,12 @@ such as no data, anonymous structs, a single string, tuples, etc.""" name = "enums3" dir = "08_enums" hint = """ -As a first step, you can define enums to compile this code without errors. +As a first step, define enums to compile the code without errors. -And then create a match expression in `process()`. +Then, create a match expression in `process()`. Note that you need to deconstruct some message variants in the match expression -to get value in the variant.""" +to get the variant's values.""" # STRINGS |
