Skip to content

Commit 3f992ea

Browse files
committed
style: format via standardJs
1 parent cd448ca commit 3f992ea

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

String/CheckPangram.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @function checkPangram
33
* @description - Pangram is a sentence that contains all the letters in the alphabet https://en.wikipedia.org/wiki/Pangram
4-
* @param {string} string
4+
* @param {string} string
55
* @returns {boolean}
66
*/
77
const checkPangram = (string) => {
@@ -10,7 +10,7 @@ const checkPangram = (string) => {
1010
}
1111

1212
/**
13-
* match all 26 alphabets using regex, with the help of:
13+
* match all 26 alphabets using regex, with the help of:
1414
* Capturing Group
1515
* Character set
1616
* Negative lookahead

0 commit comments

Comments
 (0)