Remove unnecessary quote

This commit is contained in:
Johannes Zillmann 2021-07-11 20:11:04 -06:00
parent 7fe1748943
commit 12ed0e8d4d

View File

@ -106,7 +106,7 @@ export function isListItem(string) {
}
export function isNumberedListItem(string) {
return /^[\s]*[\d]*[\.][\s].*$/g.test(string);
return /^[\s]*[\d]*[.][\s].*$/g.test(string);
}
export function wordMatch(string1, string2) {