]> gitweb.factorcode.org Git - factor.git/commitdiff
progress-bars.models: fix typo in docs.
authorJohn Benediktsson <mrjbq7@gmail.com>
Tue, 8 Nov 2016 22:11:53 +0000 (14:11 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Tue, 8 Nov 2016 22:11:53 +0000 (14:11 -0800)
extra/progress-bars/models/models-docs.factor

index 08be7774cd7ee2ba4b50f86a88d6ab805f085806..5b2ef32c6e0e894198e53d6897a2b2feec6a586e 100644 (file)
@@ -13,7 +13,7 @@ HELP: with-file-reader-progress
 { $values
     { "path" "a pathname string" } { "encoding" "an encoding" } { "quot" quotation }
 }
-{ $description "Opens a file for reading, displays a progress bar, and calls the quotation for processing the file. The progress bar will automtically update every 100 milliseconds, but only if the quotation yields (by calling " { $link yield } ") so that the UI has a chance to redraw." }
+{ $description "Opens a file for reading, displays a progress bar, and calls the quotation for processing the file. The progress bar will automatically update every 100 milliseconds, but only if the quotation yields (by calling " { $link yield } ") so that the UI has a chance to redraw." }
 { $examples
     "Loop through the Factor image file, discarding each character as it's read and updating a progress bar:"
     { $unchecked-example "USING: system progress-bars.models prettyprint io.encodings.binary threads ;