]> gitweb.factorcode.org Git - factor.git/blobdiff - library/hashtables.factor
CHAR: notation for literal chars, native parser work
[factor.git] / library / hashtables.factor
index e2d964c4bbc578b3b019431d1848ada38a4216e9..e28c6b2c7b8d9bae723ea8b330defac1bbf0982f 100644 (file)
@@ -1,4 +1,4 @@
-!:folding=indent:collapseFolds=1:
+! :folding=indent:collapseFolds=1:
 
 ! $Id$
 !
@@ -33,9 +33,9 @@ USE: lists
 USE: stack
 USE: vectors
 
-!!! Note that the length of a hashtable vector must not change
-!!! for the lifetime of the hashtable, otherwise problems will
-!!! occur. Do not use vector words with hashtables.
+! Note that the length of a hashtable vector must not change
+! for the lifetime of the hashtable, otherwise problems will
+! occur. Do not use vector words with hashtables.
 
 : hashtable? ( obj -- ? )
     dup vector? [ [ assoc? ] vector-all? ] [ drop f ] ifte ;