]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/urls/encoding/encoding-docs.factor
factor: remove """ string syntax for now. there are HEREDOC:, STRING:, escaping ...
[factor.git] / basis / urls / encoding / encoding-docs.factor
index e4947d602140495fe53450d6bdb15ee1c4e7a209..cc0859b8afc2c05b1cf0d697a30b16b5bdf576f9 100644 (file)
@@ -39,12 +39,12 @@ HELP: query>assoc
         "USING: prettyprint urls.encoding ;"
         "\"gender=female&agefrom=22&ageto=28&location=Omaha+NE\""
         "query>assoc ."
-        """H{
-    { "gender" "female" }
-    { "agefrom" "22" }
-    { "ageto" "28" }
-    { "location" "Omaha NE" }
-}"""
+        "H{
+    { \"gender\" \"female\" }
+    { \"agefrom\" \"22\" }
+    { \"ageto\" \"28\" }
+    { \"location\" \"Omaha NE\" }
+}"
     }
 } ;