From a0340622a8859311af8d59ee43152f2d1e5f7e04 Mon Sep 17 00:00:00 2001 From: davhojt Date: Mon, 30 May 2022 13:23:37 +0200 Subject: [PATCH] docs(pangram) correct grammar --- subjects/pangram/README.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/subjects/pangram/README.md b/subjects/pangram/README.md index d543ba76..372d8fe7 100644 --- a/subjects/pangram/README.md +++ b/subjects/pangram/README.md @@ -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)