]> gitweb.factorcode.org Git - factor.git/commitdiff
fixups: add missing range renames, delete private word, and lines typo
authorDoug Coleman <doug.coleman@gmail.com>
Thu, 30 Dec 2021 17:04:23 +0000 (11:04 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Thu, 30 Dec 2021 17:04:23 +0000 (11:04 -0600)
basis/fixups/fixups.factor

index f4fa556ce88d647ec09c4a79c5fb8b2b354d8358..4b4f6420cb4aeac2ad056475cf25eb11d3d25c13 100644 (file)
@@ -12,18 +12,20 @@ CONSTANT: vocab-renames {
 
 CONSTANT: word-renames {
     { "lines" { "io:read-lines" "0.99" } }
-    { "lines" { "splitting:split-lines" "0.99" } }
     { "words" { "splitting:split-words" "0.99" } }
     { "contents" { "io:read-contents" "0.99" } }
     { "exists?" { "io.files:file-exists?" "0.99" } }
     { "string-lines" { "splitting:split-lines" "0.99" } }
-    { "split-lines" { "documents.private:?split-lines" "0.99" } }
     { "[-inf,a)" { "math.intervals:[-inf,b)" "0.99" } }
     { "[-inf,a]" { "math.intervals:[-inf,b]" "0.99" } }
     { "(a,b)" { "math.ranges:(a..b)" "0.99" } }
     { "(a,b]" { "math.ranges:(a..b]" "0.99" } }
     { "[a,b)" { "math.ranges:[a..b)" "0.99" } }
     { "[a,b]" { "math.ranges:[a..b]" "0.99" } }
+    { "[0,b)" { "math.ranges:[0..b)" "0.99" } }
+    { "[0,b]" { "math.ranges:[0..b]" "0.99" } }
+    { "[1,b)" { "math.ranges:[1..b)" "0.99" } }
+    { "[1,b]" { "math.ranges:[1..b]" "0.99" } }
     { "assoc-merge" { "assocs.extras:assoc-collect" "0.99" } }
     { "assoc-merge!" { "assocs.extras:assoc-collect!" "0.99" } }
     { "peek-from" { "modern.html:peek1-from" "0.99" } }