From ef7ab3e2390d601428d1f368d75411e3f2e498f0 Mon Sep 17 00:00:00 2001 From: MultisampledNight Date: Wed, 10 Jan 2024 21:42:52 +0100 Subject: [PATCH] docs(design): explain individual lines of input ex --- docs/design/iowo-design.typ | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/design/iowo-design.typ b/docs/design/iowo-design.typ index fc0069d..ad1849d 100644 --- a/docs/design/iowo-design.typ +++ b/docs/design/iowo-design.typ @@ -69,9 +69,9 @@ The foundation of actually "doing" something. - So all of these are equivalent: ```iowo -1 | add 2 -add 1 2 -[ 1 2 ] | add +add 1 2 -- all inputs as arguments +[ 1 2 ] | add -- all inputs through the pipeline +1 | add 2 -- one input through the pipeline, one as argument ``` ==== Outputs