aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/pipe.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/control/pipe.lux')
-rw-r--r--stdlib/source/lux/control/pipe.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/control/pipe.lux b/stdlib/source/lux/control/pipe.lux
index 26a94a554..7c68c06f6 100644
--- a/stdlib/source/lux/control/pipe.lux
+++ b/stdlib/source/lux/control/pipe.lux
@@ -47,7 +47,7 @@
prev)
{#;doc (doc "Branching for pipes."
"Both the tests and the bodies are piped-code, and must be given inside a tuple."
- "If a last else-pipe isn't given, the piped-argument will be used instead."
+ "If a last else-pipe is not given, the piped-argument will be used instead."
(|> 5
(?> [i.even?] [(i.* 2)]
[i.odd?] [(i.* 3)]
@@ -101,7 +101,7 @@
(syntax: #export (~> [body body^] prev)
{#;doc (doc "Non-updating pipes."
- "Will generate piped computations, but their results won't be used in the larger scope."
+ "Will generate piped computations, but their results will not be used in the larger scope."
(|> 5
(~> [int-to-nat %n log!])
(i.* 10)))}