From 08121292b0d2c44415ad88ff67f34b32a64c077e Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Tue, 23 Aug 2011 12:19:58 -0700 Subject: [PATCH] Fix help-lint for memcached --- extra/memcached/memcached-docs.factor | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/extra/memcached/memcached-docs.factor b/extra/memcached/memcached-docs.factor index 1e5115f7a0..c8963acdf8 100644 --- a/extra/memcached/memcached-docs.factor +++ b/extra/memcached/memcached-docs.factor @@ -65,30 +65,31 @@ HELP: m/prepend } ; HELP: m/incr -{ $values { "key" string } } +{ $values { "key" string } { "val" string } } { $description "Increments the value of the specified item by 1." } ; HELP: m/incr-val -{ $values { "amt" "key" string } } +{ $values { "amt" string } { "key" string } { "val" string } } { $description "Increments the value of the specified item by the specified amount." } ; HELP: m/decr -{ $values { "key" string } } +{ $values { "key" string } { "val" string } } { $description "Decrements the value of the specified item by 1." } ; HELP: m/decr-val -{ $values { "amt" "key" string } } +{ $values { "amt" string } { "key" string } { "val" string } } { $description "Decrements the value of the specified item by the specified amount." } ; HELP: m/version +{ $values { "version" string } } { $description "Retrieves the version of the " { $link memcached-server } "." } ;