chore: update spelling mistakes (#1790)

* chore: update spelling mistakes

* chore: add spellignore

* chore: update sp mistakes
This commit is contained in:
Ridge Kimani
2025-09-04 07:02:03 +03:00
committed by GitHub
parent 19ecb18f0a
commit 08d8c6b674
21 changed files with 29 additions and 27 deletions

View File

@@ -11,7 +11,7 @@
* like "2A3*3a2", "2A3 3a2", and "2_A3*3#A2"
*
* But the catch is, we have to check only if the alphanumeric characters
* are palindrome i.e remove spaces, symbols, punctuations etc
* are palindrome i.e remove spaces, symbols, punctuation etc
* and the case of the characters doesn't matter
*/
const alphaNumericPalindrome = (str) => {

View File

@@ -1,4 +1,4 @@
// Palindrome check is case sensitive; i.e. Aba is not a palindrome
// Palindrome check is case sensitive; i.e., Aba is not a palindrome
// input is a string
const checkPalindrome = (str) => {
// check that input is a string