1
0
mirror of https://github.com/janet-lang/janet synced 2025-11-17 07:47:15 +00:00

Update src/boot/boot.janet

Co-authored-by: Michael Camilleri <mike@inqk.net>
This commit is contained in:
John Gabriele
2020-11-29 14:17:23 -05:00
committed by GitHub
parent 31ae93de19
commit 2db9323671

View File

@@ -763,7 +763,7 @@
(compare-reduce < xs)) (compare-reduce < xs))
(defn compare<= (defn compare<=
``Equivalent of `<=` but using compare function instead of primitive comparator.`` ``Equivalent of `<=` but using polymorphic `compare` instead of primitive comparator.``
[& xs] [& xs]
(compare-reduce <= xs)) (compare-reduce <= xs))