From 87eb6822922ca408207fa9b15f93fa6af380c7f4 Mon Sep 17 00:00:00 2001 From: Neven Sajko Date: Thu, 12 Oct 2023 16:27:37 +0200 Subject: [PATCH] docs: `Base.Order.Ordering`: consistency with #48363 and #48387 "Total order" -> "strict weak order". --- base/ordering.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/base/ordering.jl b/base/ordering.jl index 13f5eceb2d4dc..36d8e90064eba 100644 --- a/base/ordering.jl +++ b/base/ordering.jl @@ -21,7 +21,8 @@ export # not exported by Base """ Base.Order.Ordering -Abstract type which represents a total order on some set of elements. +Abstract type which represents a strict weak order on some set of elements. See +[`sort!`](@ref) for more. Use [`Base.Order.lt`](@ref) to compare two elements according to the ordering. """