Skip to content

Commit 39fc111

Browse files
committed
Complete the pattern punctuation sets
1 parent e230476 commit 39fc111

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -616,8 +616,8 @@ const PAT_CLASS_NAMES = Object.freeze({
616616
["G"]: ["Not printable", "all non-printable characters including space (Equivalent to [^\\33-\\126])"],
617617
["l"]: ["Lowercase", "all lowercase letters (Equivalent to [a-z])"],
618618
["L"]: ["Not lowercase", "all non-lowercase letters (Equivalent to [^a-z])"],
619-
["p"]: ["Punctuations", "all punctuation characters (Equivalent to [!\"#$%&'()*+,-./[\\%]^_`{|}~])"],
620-
["P"]: ["Not punctuations", "all non-punctuation characters (Equivalent to [^!\"#$%&'()*+,-./[\\%]^_`{|}~])"],
619+
["p"]: ["Punctuations", "all punctuation characters (Equivalent to [!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~])"],
620+
["P"]: ["Not punctuations", "all non-punctuation characters (Equivalent to [^!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~])"],
621621
["s"]: ["Spaces", "all white-space characters (Equivalent to [ \\t\\n\\v\\f\\r])"],
622622
["S"]: ["Not spaces", "all non-white-space characters (Equivalent to [^ \\t\\n\\v\\f\\r])"],
623623
["u"]: ["Uppercase", "all uppercase letters (Equivalent to [A-Z])"],

0 commit comments

Comments
 (0)