]> gitweb.factorcode.org Git - factor.git/blobdiff - core/sequences/sequences.factor
factor: whitespace only
[factor.git] / core / sequences / sequences.factor
index 7759cf3bac706e0497a7f4b9812ed3782f6a9074..028ef4f7f94956de0a9281af732a0f616a043444 100644 (file)
@@ -180,7 +180,7 @@ PRIVATE>
 : first4 ( seq -- first second third fourth )
     3 swap bounds-check nip first4-unsafe ; inline
 
- : ?nth ( n seq -- elt/f )
+: ?nth ( n seq -- elt/f )
     2dup bounds-check? [ nth-unsafe ] [ 2drop f ] if ; inline
 
 : ?set-nth ( elt n seq -- )