mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-05 12:37:46 +00:00
fix comment (#18473)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user