]> gitweb.factorcode.org Git - factor.git/commitdiff
io.pathnames-docs: fix a copy-paste error
authorAlexander Iljin <ajsoft@yandex.ru>
Mon, 13 Jul 2020 20:32:30 +0000 (22:32 +0200)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sun, 19 Jul 2020 14:24:11 +0000 (14:24 +0000)
core/io/pathnames/pathnames-docs.factor

index 8f94200d15a19ea65c774fd20e3114a9ca33e6d9..638b2b7ff818e7dd66d106bc8e03dd8488ebbfc6 100644 (file)
@@ -57,7 +57,7 @@ HELP: append-path
 
 HELP: prepend-path
 { $values { "path1" "a pathname string" } { "path2" "a pathname string" } { "path" "a pathname string" } }
-{ $description "Appends " { $snippet "path2" } " and " { $snippet "path1" } " to form a pathname." }
+{ $description "Prepends " { $snippet "path2" } " and " { $snippet "path1" } " to form a pathname." }
 { $examples
     { $unchecked-example "USING: io.pathnames prettyprint ;
 \"second.txt\" \"first\" prepend-path ."