morse: fix help lint
parent
5165d811d5
commit
74d352434c
|
@ -5,7 +5,7 @@ IN: morse
|
||||||
|
|
||||||
HELP: ch>morse
|
HELP: ch>morse
|
||||||
{ $values
|
{ $values
|
||||||
{ "ch" "A character that has a morse code translation" } { "str" "A string consisting of zero or more dots and dashes" } }
|
{ "ch" "A character that has a morse code translation" } { "morse" "A string consisting of zero or more dots and dashes" } }
|
||||||
{ $description "If the given character has a morse code translation, then return that translation, otherwise return a ? character." } ;
|
{ $description "If the given character has a morse code translation, then return that translation, otherwise return a ? character." } ;
|
||||||
|
|
||||||
HELP: morse>ch
|
HELP: morse>ch
|
||||||
|
@ -15,12 +15,12 @@ HELP: morse>ch
|
||||||
|
|
||||||
HELP: >morse
|
HELP: >morse
|
||||||
{ $values
|
{ $values
|
||||||
{ "str" "A string of ASCII characters which can be translated into morse code" } { "str" "A string in morse code" } }
|
{ "str" "A string of ASCII characters which can be translated into morse code" } { "newstr" "A string in morse code" } }
|
||||||
{ $description "Translates ASCII text into morse code, represented by a series of dots, dashes, and slashes." }
|
{ $description "Translates ASCII text into morse code, represented by a series of dots, dashes, and slashes." }
|
||||||
{ $see-also morse> ch>morse } ;
|
{ $see-also morse> ch>morse } ;
|
||||||
|
|
||||||
HELP: morse>
|
HELP: morse>
|
||||||
{ $values { "str" "A string of morse code, in which the character '.' represents dots, '-' dashes, ' ' spaces between letters, and ' / ' spaces between words." } { "str" "The ASCII translation of the given string" } }
|
{ $values { "morse" "A string of morse code, in which the character '.' represents dots, '-' dashes, ' ' spaces between letters, and ' / ' spaces between words." } { "plain" "The ASCII translation of the given string" } }
|
||||||
{ $description "Translates morse code into ASCII text" }
|
{ $description "Translates morse code into ASCII text" }
|
||||||
{ $see-also >morse morse>ch } ;
|
{ $see-also >morse morse>ch } ;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue