]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/io/pipes/pipes.factor
basis: removing unnecessary method stack effects.
[factor.git] / basis / io / pipes / pipes.factor
index 6c6a364097eea5b62c661cfdc138f1e553fd115a..9df6c52a5f70931ccf7a8d9a16de7d7395dfe393 100644 (file)
@@ -8,7 +8,7 @@ IN: io.pipes
 
 TUPLE: pipe in out ;
 
-M: pipe dispose ( pipe -- )
+M: pipe dispose
     [
         [ in>> &dispose drop ]
         [ out>> &dispose drop ] bi
@@ -42,7 +42,7 @@ M: callable run-pipeline-element
 
 GENERIC: <pipes> ( obj -- pipes )
 
-M: integer <pipes> ( n -- pipes )
+M: integer <pipes>
     [
         [ (pipe) |dispose ] replicate
         T{ pipe } [ prefix ] [ suffix ] bi