]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/bittorrent/bittorrent.factor
factor: use new math.ranges syntax in tests and docs
[factor.git] / extra / bittorrent / bittorrent.factor
index 3f606fb43f880a3ba2bdba31076ae5e2db0cbf11..70e4158e7b7ccec9b0dd6a338b63e9dc45b47b24 100644 (file)
@@ -15,9 +15,9 @@ IN: bittorrent
 <<
 CONSTANT: ALPHANUMERIC $[
     [
-        CHAR: a CHAR: z [a,b] %
-        CHAR: A CHAR: Z [a,b] %
-        CHAR: 0 CHAR: 9 [a,b] %
+        CHAR: a CHAR: z [a..b] %
+        CHAR: A CHAR: Z [a..b] %
+        CHAR: 0 CHAR: 9 [a..b] %
         ".-_~" %
     ] { } make
 ]