From 57b08a57a03527418a223cfca2ee40f100a471e4 Mon Sep 17 00:00:00 2001 From: DEADB17 Date: Tue, 31 Mar 2020 23:32:17 -0400 Subject: [PATCH] Corret typo and match wording for consistency --- src/boot/boot.janet | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/boot/boot.janet b/src/boot/boot.janet index 114d0d5a..d17b613b 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -942,7 +942,7 @@ (reduce fop x forms)) (defmacro -?> - "Short circuit threading macro. Inserts x as the last value in the first form + "Short circuit threading macro. Inserts x as the second value in the first form in forms, and inserts the modified first form into the second form in the same manner, and so on. The pipeline will return nil if an intermediate value is nil. @@ -958,7 +958,7 @@ (reduce fop x forms)) (defmacro -?>> - "Threading macro. Inserts x as the last value in the first form + "Short circuit threading macro. Inserts x as the last value in the first form in forms, and inserts the modified first form into the second form in the same manner, and so on. The pipeline will return nil if an intermediate value is nil.