docs(pangram) correct grammar

This commit is contained in:
davhojt 2022-05-30 13:23:37 +02:00 committed by Dav Hojt
parent 5da8e1cde2
commit a0340622a8
1 changed files with 6 additions and 8 deletions

View File

@ -2,17 +2,11 @@
### Instructions
Create a `function` is_pangram which will determine whether or not a string is a pangram.
Create a **function** named `is_pangram` which returns `true` if the given string is a pangram.
A pangram is a sentence which uses every letter of the alphabet at least once.
Example:
"The quick brown fox jumps over the lazy dog."
### Notions
- [patterns](https://doc.rust-lang.org/book/ch18-00-patterns.html)
Example: "The quick brown fox jumps over the lazy dog."
### Expected functions
@ -46,3 +40,7 @@ true
false
$
```
### Notions
- [patterns](https://doc.rust-lang.org/book/ch18-00-patterns.html)