Skip to content

Commit 827b75b

Browse files
committed
chore: add spellignore
1 parent 1e32eef commit 827b75b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.codespellignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Codespell ignore file
2+
# This file contains words that should be ignored by codespell
3+
4+
# 'abd' is used as a valid example in subsequence algorithms
5+
abd

String/AlphaNumericPalindrome.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* like "2A3*3a2", "2A3 3a2", and "2_A3*3#A2"
1212
*
1313
* But the catch is, we have to check only if the alphanumeric characters
14-
* are palindrome i.e remove spaces, symbols, punctuations etc
14+
* are palindrome i.e remove spaces, symbols, punctuation etc
1515
* and the case of the characters doesn't matter
1616
*/
1717
const alphaNumericPalindrome = (str) => {

0 commit comments

Comments
 (0)