]> gitweb.factorcode.org Git - factor.git/commitdiff
simple-flat-file: update docs for data change.
authorJohn Benediktsson <mrjbq7@gmail.com>
Fri, 3 Feb 2017 00:45:56 +0000 (16:45 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Fri, 3 Feb 2017 00:45:56 +0000 (16:45 -0800)
basis/simple-flat-file/simple-flat-file-docs.factor

index 49dc079803a095926d62dd3e5161e53a0ee36318..44799fe5ee7f1241c4a0e35bc3c3f1d2fb87f77a 100644 (file)
@@ -10,14 +10,14 @@ ARTICLE: "simple-flat-file" "Parsing simple flat files"
 { $subsections
     flat-file>biassoc
     load-interval-file
-    data
+    load-data-file
 } ;
 
 HELP: load-interval-file
 { $values { "filename" string } { "table" "an interval map" } }
 { $description "This loads a file that looks like Script.txt in the Unicode Character Database and converts it into an efficient interval map, where the keys are characters and the values are strings for the properties." } ;
 
-HELP: data
+HELP: load-data-file
 { $values { "filename" string } { "data" array } }
 { $description "This loads a file that's delineated by semicolons and lines, returning an array of lines, where each line is an array split by the semicolons, with whitespace trimmed off." } ;