]> gitweb.factorcode.org Git - factor.git/commitdiff
hybrid -> alphanum in stack effects
authorDoug Coleman <doug.coleman@gmail.com>
Sun, 2 Oct 2011 18:59:38 +0000 (11:59 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Sun, 2 Oct 2011 18:59:38 +0000 (11:59 -0700)
basis/sorting/human/human.factor

index 3789d2a77147e079ee17e50cf15b8988e7efd256..b5048e45b0237c17813818243b3763e3b5ee2c92 100644 (file)
@@ -27,11 +27,11 @@ IN: sorting.human
 ! For comparing integers or sequences
 TUPLE: alphanum obj ;
 
-: <alphanum> ( obj -- hybrid )
+: <alphanum> ( obj -- alphanum )
     alphanum new
         swap >>obj ; inline
 
-: <alphanum-insensitive> ( obj -- hybrid )
+: <alphanum-insensitive> ( obj -- alphanum )
     alphanum new
         swap dup string? [ w/collation-key ] when >>obj ; inline