]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/redis/command-writer/command-writer.factor
factor: remove extra whitespace
[factor.git] / extra / redis / command-writer / command-writer.factor
index 04a2870595c8af393dcda464f32e65cdab2cd2df..0e61a5043075b1d4cee0b62953c9dc208ff327bb 100644 (file)
@@ -99,11 +99,11 @@ PRIVATE>
 : hgetall ( key -- ) 1array "HGETALL" write-command ;
 : hincrby ( integer field key -- )
     3array "HINCRBY" write-command ;
-: hincrbyfloat (  float field key -- )
+: hincrbyfloat ( float field key -- )
     3array "HINCRBYFLOAT" write-command ;
 : hkeys ( key -- ) 1array "HKEYS" write-command ;
 : hlen ( key -- ) 1array "HLEN" write-command ;
-: hmget ( seq key  -- ) prefix reverse "HMGET" write-command ;
+: hmget ( seq key -- ) prefix reverse "HMGET" write-command ;
 : hmset ( assoc key -- )
     [
         >alist concat reverse