diff options
| author | mokou <mokou@fastmail.com> | 2022-07-14 17:34:50 +0200 |
|---|---|---|
| committer | mokou <mokou@fastmail.com> | 2022-07-14 17:34:50 +0200 |
| commit | b644558c19dd1f0319204f50c1c162562edb79b1 (patch) | |
| tree | b87116c2bdf6071d0e1707137a82e94bb2d4231a /exercises | |
| parent | 472d7944f95e41d8fa9f78ac2870a3827afdc544 (diff) | |
fix: rename option to options
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/options/README.md (renamed from exercises/option/README.md) | 2 | ||||
| -rw-r--r-- | exercises/options/options1.rs (renamed from exercises/option/option1.rs) | 4 | ||||
| -rw-r--r-- | exercises/options/options2.rs (renamed from exercises/option/option2.rs) | 2 | ||||
| -rw-r--r-- | exercises/options/options3.rs (renamed from exercises/option/option3.rs) | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/exercises/option/README.md b/exercises/options/README.md index 89c0028..6140a16 100644 --- a/exercises/option/README.md +++ b/exercises/options/README.md @@ -1,4 +1,4 @@ -# Option +# Options Type Option represents an optional value: every Option is either Some and contains a value, or None, and does not. Option types are very common in Rust code, as they have a number of uses: diff --git a/exercises/option/option1.rs b/exercises/options/options1.rs index 17cf4f6..9d96817 100644 --- a/exercises/option/option1.rs +++ b/exercises/options/options1.rs @@ -1,5 +1,5 @@ -// option1.rs -// Make me compile! Execute `rustlings hint option1` for hints +// options1.rs +// Execute `rustlings hint options1` or use the `hint` watch subcommand for a hint. // I AM NOT DONE diff --git a/exercises/option/option2.rs b/exercises/options/options2.rs index c6b83ec..a1c21d3 100644 --- a/exercises/option/option2.rs +++ b/exercises/options/options2.rs @@ -1,4 +1,4 @@ -// option2.rs +// options2.rs // Make me compile! Execute `rustlings hint option2` for hints // I AM NOT DONE diff --git a/exercises/option/option3.rs b/exercises/options/options3.rs index 045d2ac..4cba4ad 100644 --- a/exercises/option/option3.rs +++ b/exercises/options/options3.rs @@ -1,4 +1,4 @@ -// option3.rs +// options3.rs // Make me compile! Execute `rustlings hint option3` for hints // I AM NOT DONE |
