From 7b033a48a36f164714d12d8198f8c89ff70d430b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Pospi=CC=81s=CC=8Cil?= Date: Thu, 25 Jun 2020 09:43:10 +0200 Subject: [PATCH] Wrap both reverse and reversed docstring to 80 chr --- src/boot/boot.janet | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/boot/boot.janet b/src/boot/boot.janet index 30cb234f..48bb9234 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -1198,7 +1198,8 @@ res) (defn reverse - "Reverses the order of the elements in a given array or tuple and returns it mutated." + "Reverses the order of the elements in a given array or tuple and returns it + mutated." [t] (def len-1 (- (length t) 1)) (def half (/ len-1 2)) @@ -1211,7 +1212,8 @@ t) (defn reversed - "Reverses the order of the elements in a given array or tuple and returns a new array." + "Reverses the order of the elements in a given array or tuple and returns + a new array." [t] (def len (length t)) (var n (- len 1))