Skip to content

Commit

Permalink
Fix panic because comma in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kamikazebr authored Oct 24, 2023
1 parent fb46dc9 commit a33315c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ For example, if you want to verify the regex of `email was meant for @(a|b|c|d|e
"parts":[
{
"is_public": false,
"regex_def": "email was meant for @",
"regex_def": "email was meant for @"
},
{
"is_public": true,
"regex_def": "(a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z)+",
"regex_def": "(a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z)+"
},
{
"is_public": false,
"regex_def": ".",
"regex_def": "."
}
]
}
Expand Down

0 comments on commit a33315c

Please sign in to comment.