]> gitweb.factorcode.org Git - factor.git/commitdiff
compression.zlib: fix help-lint.
authorJohn Benediktsson <mrjbq7@gmail.com>
Sat, 2 May 2015 16:32:05 +0000 (09:32 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sat, 2 May 2015 16:32:05 +0000 (09:32 -0700)
basis/compression/zlib/zlib-docs.factor
basis/compression/zlib/zlib.factor

index bfe8c12ccda181cbb24a359f4bfaec338b4aee09..edfcea9026f4f2c12ae4034a0da3600b65b7bf83 100644 (file)
@@ -29,10 +29,10 @@ HELP: compressed-size
 
 HELP: uncompress
 { $values
-    { "compressed" compressed }
+    { "obj" { $or compressed byte-array } }
     { "byte-array" byte-array }
 }
-{ $description "Uncompresses a compressed object, returning a byte-array of the underlying data." } ;
+{ $description "Uncompresses, returning a byte-array of the underlying data." } ;
 
 ARTICLE: "compression.zlib" "Compression (ZLIB)"
 "The " { $vocab-link "compression.zlib" } " vocabulary provides support for ZLIB:"
index 3baf8778e4268900d22c8bcae86105a9899a5580..ab47565b0ed6e059402389ebb9cdb023fe115602 100644 (file)
@@ -46,7 +46,7 @@ ERROR: zlib-failed n string ;
 
 GENERIC: uncompress ( obj -- byte-array )
 
-M: compressed uncompress ( compressed -- byte-array )
+M: compressed uncompress
     [
         length>> [ <byte-vector> dup underlying>> ] keep
         ulong <ref>
@@ -63,6 +63,6 @@ M: compressed uncompress ( compressed -- byte-array )
         2drop ulong deref memory>byte-array
     ] with-destructors ;
 
-M: byte-array uncompress ( byte-array -- byte-array )
+M: byte-array uncompress
     [ length 5 [0,b) [ 2^ * ] with map ] keep
     '[ _ (uncompress) ] attempt-all ;