]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/hashcash/hashcash.factor
factor: use new math.ranges syntax in tests and docs
[factor.git] / extra / hashcash / hashcash.factor
index b0f7efc274b7ac42ba9f17eef3649ab81b4810b3..017cb4bcd0956edd21fe77dd543e6d4a43796b15 100644 (file)
@@ -25,7 +25,7 @@ IN: hashcash
 ! Random salt is formed by ascii characters
 ! between 33 and 126
 CONSTANT: available-chars $[
-    CHAR: : 33 126 [a,b] remove >byte-array
+    CHAR: : 33 126 [a..b] remove >byte-array
 ]
 
 PRIVATE>