]> gitweb.factorcode.org Git - factor.git/blobdiff - core/checksums/checksums-docs.factor
factor: remove """ string syntax for now. there are HEREDOC:, STRING:, escaping ...
[factor.git] / core / checksums / checksums-docs.factor
index 63657530bd748b77e5c6cd5d57d0e0e85a3d690a..b4950c5deb00fab4f5c31b2263c34326edc580b4 100644 (file)
@@ -34,10 +34,10 @@ HELP: checksum-lines
 { $examples
     { $example
         "USING: checksums checksums.crc32 prettyprint ;"
-"""{
-    "Take me out to the ball game"
-    "Take me out with the crowd"
-} crc32 checksum-lines ."""
+"{
+    \"Take me out to the ball game\"
+    \"Take me out with the crowd\"
+} crc32 checksum-lines ."
         "B{ 111 205 9 27 }"
     }
 } ;
@@ -48,7 +48,7 @@ HELP: checksum-file
 { $examples
     { $example
         "USING: checksums checksums.crc32 prettyprint ;"
-        """"resource:license.txt" crc32 checksum-file ."""
+        "\"resource:license.txt\" crc32 checksum-file ."
         "B{ 100 139 199 92 }"
     }
 } ;