]> granicus.if.org Git - onig/commitdiff
rename Absent cutter to Absent stopper
authorK.Kosako <kosako@sofnec.co.jp>
Wed, 16 Aug 2017 03:37:08 +0000 (12:37 +0900)
committerK.Kosako <kosako@sofnec.co.jp>
Wed, 16 Aug 2017 03:37:08 +0000 (12:37 +0900)
README.md
doc/RE

index e99670e88522183ea077fce11033ec8a606ff8b9..94432b8b3b31e31d7400f2d57e81783c7c7bcf01 100644 (file)
--- a/README.md
+++ b/README.md
@@ -43,7 +43,7 @@ New feature of version 6.5.0
 * NEW: Backreference validity checker (?(xxx)) (*original)
 * NEW: Absent repeater (?~absent)
 * NEW: Absent expression   (?~|absent|expr)  (*original)
-* NEW: Absent range cutter (?~|absent)     (*original)
+* NEW: Absent stopper (?~|absent)     (*original)
 
 
 New feature of version 6.4.0
diff --git a/doc/RE b/doc/RE
index 176b04237071f38d37b9c3ce20941366ac279ef0..e95b649005766c4abfdfdfc2c66646d0060af918 100644 (file)
--- a/doc/RE
+++ b/doc/RE
@@ -1,4 +1,4 @@
-Oniguruma Regular Expressions Version 6.6.0    2017/08/15
+Oniguruma Regular Expressions Version 6.6.0    2017/08/16
 
 syntax: ONIG_SYNTAX_RUBY (default)
 
@@ -263,13 +263,13 @@ syntax: ONIG_SYNTAX_RUBY (default)
 
                      ex. (?~|345|\d*)  "12345678"  ==> "12", "1", ""
 
-  (?~|absent)        Absent cutter (* original)
+  (?~|absent)        Absent stopper (* original)
                      After passed this operator, string right range is limited
                      at the point that does not include the string match whth
                      <absent>.
 
   (?~|)              Absent clear
-                     Clear the effects caused by Absent cutters.
+                     Clear the effects caused by Absent stoppers.
 
      * Nested Absent functions are not supported and the behavior
        is undefined.