summaryrefslogtreecommitdiff
path: root/yarp
diff options
context:
space:
mode:
authorTim Morgan <tim@timmorgan.org>2023-09-11 06:01:36 -0500
committergit <svn-admin@ruby-lang.org>2023-09-11 15:25:06 +0000
commit5a8767ed6c26a02ba8aecb6205cfad6cb991bc46 (patch)
treea5e68ea66e69e50b501cd813fb7f79e3d28c5f70 /yarp
parent689dffc8576215239ae3c38633b3f2257208fc70 (diff)
[ruby/yarp] Fix order of Regexp flags
https://github.com/ruby/yarp/commit/e421305ea2
Diffstat (limited to 'yarp')
-rw-r--r--yarp/config.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/yarp/config.yml b/yarp/config.yml
index e63c2bb802..1d96410fd5 100644
--- a/yarp/config.yml
+++ b/yarp/config.yml
@@ -345,10 +345,10 @@ flags:
values:
- name: IGNORE_CASE
comment: "i - ignores the case of characters when matching"
- - name: MULTI_LINE
- comment: "m - allows $ to match the end of lines within strings"
- name: EXTENDED
comment: "x - ignores whitespace and allows comments in regular expressions"
+ - name: MULTI_LINE
+ comment: "m - allows $ to match the end of lines within strings"
- name: EUC_JP
comment: "e - forces the EUC-JP encoding"
- name: ASCII_8BIT