From 7a58500b0125b3e4bf108314a40c8949f800c7ce Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Thu, 13 Nov 2008 21:06:41 -0600 Subject: [PATCH] fix docs for hexdump --- basis/tools/hexdump/hexdump-docs.factor | 6 +++--- basis/tools/hexdump/hexdump-tests.factor | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/basis/tools/hexdump/hexdump-docs.factor b/basis/tools/hexdump/hexdump-docs.factor index b24cc8ae33..9579fb7f81 100644 --- a/basis/tools/hexdump/hexdump-docs.factor +++ b/basis/tools/hexdump/hexdump-docs.factor @@ -12,11 +12,11 @@ HELP: hexdump { $description "Converts a sequence to its hexadecimal and ASCII representation sixteen characters at a time. Lines are separated by a newline character." } { $see-also hexdump. } ; -ARTICLE: "hexdump" "Hexdump" -"The " { $vocab-link "hexdump" } " vocabulary provides a traditional hexdump view of a sequence." $nl +ARTICLE: "tools.hexdump" "Hexdump" +"The " { $vocab-link "tools.hexdump" } " vocabulary provides a traditional hexdump view of a sequence." $nl "Write hexdump to string:" { $subsection hexdump } "Write the hexdump to the output stream:" { $subsection hexdump. } ; -ABOUT: "hexdump" +ABOUT: "tools.hexdump" diff --git a/basis/tools/hexdump/hexdump-tests.factor b/basis/tools/hexdump/hexdump-tests.factor index 1a638a8586..7202e4402c 100644 --- a/basis/tools/hexdump/hexdump-tests.factor +++ b/basis/tools/hexdump/hexdump-tests.factor @@ -1,4 +1,4 @@ -USING: hexdump kernel sequences tools.test ; +USING: tools.hexdump kernel sequences tools.test ; IN: tools.hexdump.tests [ t ] [ "" hexdump "Length: 0, 0h\n" = ] unit-test