Fix help-lint for memcached
parent
ae6826ed0d
commit
08121292b0
|
@ -65,30 +65,31 @@ HELP: m/prepend
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
HELP: m/incr
|
HELP: m/incr
|
||||||
{ $values { "key" string } }
|
{ $values { "key" string } { "val" string } }
|
||||||
{ $description
|
{ $description
|
||||||
"Increments the value of the specified item by 1."
|
"Increments the value of the specified item by 1."
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
HELP: m/incr-val
|
HELP: m/incr-val
|
||||||
{ $values { "amt" "key" string } }
|
{ $values { "amt" string } { "key" string } { "val" string } }
|
||||||
{ $description
|
{ $description
|
||||||
"Increments the value of the specified item by the specified amount."
|
"Increments the value of the specified item by the specified amount."
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
HELP: m/decr
|
HELP: m/decr
|
||||||
{ $values { "key" string } }
|
{ $values { "key" string } { "val" string } }
|
||||||
{ $description
|
{ $description
|
||||||
"Decrements the value of the specified item by 1."
|
"Decrements the value of the specified item by 1."
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
HELP: m/decr-val
|
HELP: m/decr-val
|
||||||
{ $values { "amt" "key" string } }
|
{ $values { "amt" string } { "key" string } { "val" string } }
|
||||||
{ $description
|
{ $description
|
||||||
"Decrements the value of the specified item by the specified amount."
|
"Decrements the value of the specified item by the specified amount."
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
HELP: m/version
|
HELP: m/version
|
||||||
|
{ $values { "version" string } }
|
||||||
{ $description
|
{ $description
|
||||||
"Retrieves the version of the " { $link memcached-server } "."
|
"Retrieves the version of the " { $link memcached-server } "."
|
||||||
} ;
|
} ;
|
||||||
|
|
Loading…
Reference in New Issue