msgpack: fix help-lint errors.

db4
John Benediktsson 2013-11-27 17:36:38 -08:00
parent 0c380fe863
commit 657144019b
1 changed files with 4 additions and 4 deletions

View File

@ -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 IN: msgpack
@ -11,11 +11,11 @@ HELP: write-msgpack
{ $description "Encodes an object into the MessagePack format, writing to an " { $link output-stream } "." } ; { $description "Encodes an object into the MessagePack format, writing to an " { $link output-stream } "." } ;
HELP: msgpack> HELP: msgpack>
{ $values { "string" string } { "obj" object } } { $values { "seq" sequence } { "obj" object } }
{ $description "Decodes an object from the MessagePack format." } ; { $description "Decodes an object from the MessagePack format, represented as a " { $link byte-array } " or " { $link string } "." } ;
HELP: >msgpack HELP: >msgpack
{ $values { "obj" object } { "string" string } } { $values { "obj" object } { "bytes" byte-array } }
{ $description "Encodes an object into the MessagePack format." } ; { $description "Encodes an object into the MessagePack format." } ;
ARTICLE: "msgpack" "MessagePack" ARTICLE: "msgpack" "MessagePack"