]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/path-finding/path-finding-docs.factor
docs: change ``{ $quotation "( x -- y )" }`` to ``{ $quotation ( x -- y ) }``.
[factor.git] / extra / path-finding / path-finding-docs.factor
index e5a969dfcfaa908a5674c9958028a53a953a5279..090bdb0f8f6d27999010f1a1c3bf0e92f0278a41 100644 (file)
@@ -42,9 +42,9 @@ HELP: neighbours
 
 HELP: <astar>
 { $values
-  { "neighbours" { $quotation "( node -- seq )" } }
-  { "cost" { $quotation "( from to -- cost )" } }
-  { "heuristic" { $quotation "( pos target -- cost )" } }
+  { "neighbours" { $quotation ( node -- seq ) } }
+  { "cost" { $quotation ( from to -- cost ) } }
+  { "heuristic" { $quotation ( pos target -- cost ) } }
   { "astar" astar }
 }
 { $description "Build an astar object from the given quotations. The "