From 3883c306399316093e464df12523ee5869184e49 Mon Sep 17 00:00:00 2001 From: Eduardo Cavazos Date: Mon, 5 May 2008 21:56:01 -0500 Subject: [PATCH] io.files: Fix help bug --- core/io/files/files-docs.factor | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/core/io/files/files-docs.factor b/core/io/files/files-docs.factor index ba17223a29..b9b1f39ed3 100755 --- a/core/io/files/files-docs.factor +++ b/core/io/files/files-docs.factor @@ -184,8 +184,12 @@ HELP: +unknown+ { $description "A unknown file type." } ; HELP: -{ $values { "path" "a pathname string" } { "encoding" "an encoding descriptor" { "stream" "an input stream" } } - { "stream" "an input stream" } } +{ + $values + { "path" "a pathname string" } + { "encoding" "an encoding descriptor" } + { "stream" "an input stream" } +} { $description "Outputs an input stream for reading from the specified pathname using the given encoding." } { $errors "Throws an error if the file is unreadable." } ;