diff --git a/mrbgems/mruby-regexp/README.md b/mrbgems/mruby-regexp/README.md index a59212cf6..363206d10 100644 --- a/mrbgems/mruby-regexp/README.md +++ b/mrbgems/mruby-regexp/README.md @@ -36,6 +36,7 @@ simulation) with backtracking fallback. - `i` (`Regexp::IGNORECASE`) case-insensitive matching (ASCII) - `m` (`Regexp::MULTILINE`) `.` matches newline; `^`/`$` match at line boundaries +- `x` (`Regexp::EXTENDED`) free-spacing mode; unescaped whitespace ignored, `#` starts comments ### Ruby API @@ -104,8 +105,6 @@ pattern analysis. - **No lookbehind**: `(?<=...)` and `(?