From 657144019bd58e6b2e74a656fe6e61d155229d66 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Wed, 27 Nov 2013 17:36:38 -0800 Subject: [PATCH] msgpack: fix help-lint errors. --- extra/msgpack/msgpack-docs.factor | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/extra/msgpack/msgpack-docs.factor b/extra/msgpack/msgpack-docs.factor index 52bb593850..9acb554ec2 100644 --- a/extra/msgpack/msgpack-docs.factor +++ b/extra/msgpack/msgpack-docs.factor @@ -1,4 +1,4 @@ -USING: help.markup help.syntax io kernel strings ; +USING: byte-arrays help.markup help.syntax io kernel sequences strings ; IN: msgpack @@ -11,11 +11,11 @@ HELP: write-msgpack { $description "Encodes an object into the MessagePack format, writing to an " { $link output-stream } "." } ; HELP: msgpack> -{ $values { "string" string } { "obj" object } } -{ $description "Decodes an object from the MessagePack format." } ; +{ $values { "seq" sequence } { "obj" object } } +{ $description "Decodes an object from the MessagePack format, represented as a " { $link byte-array } " or " { $link string } "." } ; HELP: >msgpack -{ $values { "obj" object } { "string" string } } +{ $values { "obj" object } { "bytes" byte-array } } { $description "Encodes an object into the MessagePack format." } ; ARTICLE: "msgpack" "MessagePack"