From 01fcb1b856d05e356bd97c73d79b08b2d85f19a7 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Wed, 1 Oct 2008 16:04:32 -0500 Subject: [PATCH] fix help-lint --- extra/suffix-arrays/suffix-arrays-docs.factor | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/extra/suffix-arrays/suffix-arrays-docs.factor b/extra/suffix-arrays/suffix-arrays-docs.factor index 55a78b2cb6..87df27281e 100755 --- a/extra/suffix-arrays/suffix-arrays-docs.factor +++ b/extra/suffix-arrays/suffix-arrays-docs.factor @@ -21,8 +21,9 @@ HELP: suffixes HELP: from-to { $values - { "index" integer } { "suffix-array" "a suffix-array" } { "begin" sequence } - { "from" integer } { "to" integer } } + { "index" integer } { "begin" sequence } { "suffix-array" "a suffix-array" } + { "from/f" "an integer or f" } { "to/f" "an integer or f" } } +{ $description "Finds the bounds of the suffix array that match the input sequence. A return value of " { $link f } " means that the endpoint is included." } { $notes "Slices are [m,n) and we want (m,n) so we increment." } ; HELP: query