fix(exercises): remove trailing spaces

This commit is contained in:
Alexandre ESSE
2023-03-31 11:20:11 +02:00
parent 362c1b0d11
commit 22bb662d3e
5 changed files with 10 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
# Options
Type Option represents an optional value: every Option is either Some and contains a value, or None, and does not.
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:
- Initial values
- Return values for functions that are not defined over their entire input range (partial functions)