* that to than

* add missing s

* an to a

Next letter is a consonant sound
This commit is contained in:
Onè
2024-05-23 08:29:37 -04:00
committed by GitHub
parent ab39f443dc
commit aecd6e6180
4 changed files with 4 additions and 4 deletions

View File

@@ -23,7 +23,7 @@ impl Status {
```
A `match` statement that lets you compare a Rust value against a series of **patterns**.
You can think of it as a type-level `if`. If `status` is an `Done` variant, execute the first block;
You can think of it as a type-level `if`. If `status` is a `Done` variant, execute the first block;
if it's a `InProgress` or `ToDo` variant, execute the second block.
## Exhaustiveness