1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-24 06:03:17 +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:18:19 -05:00 committed by GitHub
parent 7c75aeaad2
commit b922e36071
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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