]> gitweb.factorcode.org Git - factor.git/commitdiff
help.apropos: remove extra whitespace.
authorJohn Benediktsson <mrjbq7@gmail.com>
Sat, 18 Apr 2015 01:04:08 +0000 (18:04 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sat, 18 Apr 2015 01:04:08 +0000 (18:04 -0700)
basis/help/apropos/apropos.factor

index 65e7f19798289c6bf733514b41cb92cabdab8bb8..6c4804153713c31d5d3887f903175984ac04842d 100644 (file)
@@ -24,7 +24,7 @@ SYMBOLS: word-result vocabulary-result article-result ;
         { vocabulary-result [ "Vocabularies" ] }
         { article-result [ "Help articles" ] }
     } case ;
-    
+
 : category>name ( category -- name )
     {
         { word-result [ "word" ] }
@@ -43,9 +43,9 @@ M: more-completions article-title
         "All " %
         [ seq>> length # " " % ]
         [ category>> category>name % ]
-        [ " results for “" % search>> % "”" % ] tri    
+        [ " results for “" % search>> % "”" % ] tri
     ] "" make ;
-    
+
 M: more-completions article-content
     seq>> [ second >lower ] sort-with keys \ $completions prefix ;