Skip to content

Commit

Permalink
fix comment (nim-lang#18473)
Browse files Browse the repository at this point in the history
  • Loading branch information
sivchari authored Jul 11, 2021
1 parent 3645f5f commit 980a9ed
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/impure/re.nim
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ const

type
RegexFlag* = enum ## options for regular expressions
reIgnoreCase = 0, ## do caseless matching
reMultiLine = 1, ## `^` and `$` match newlines within data
reDotAll = 2, ## `.` matches anything including NL
reExtended = 3, ## ignore whitespace and `#` comments
reStudy = 4 ## study the expression (may be omitted if the
## expression will be used only once)
reIgnoreCase = 0, ## do caseless matching
reMultiLine = 1, ## `^` and `$` match newlines within data
reDotAll = 2, ## `.` matches anything including NL
reExtended = 3, ## ignore whitespace and `#` comments
reStudy = 4 ## study the expression (may be omitted if the
## expression will be used only once)

RegexDesc = object
h: ptr Pcre
Expand Down

0 comments on commit 980a9ed

Please sign in to comment.