From 8924e6f6c4f61946e72fde783c59a7996d749051 Mon Sep 17 00:00:00 2001 From: Neven Sajko Date: Sun, 15 Dec 2024 13:37:43 +0100 Subject: [PATCH] xref `UnionAll` in the doc string of `where` (#56411) --- base/docs/basedocs.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/docs/basedocs.jl b/base/docs/basedocs.jl index c62c980fae1e1..cef5e12a9e0d8 100644 --- a/base/docs/basedocs.jl +++ b/base/docs/basedocs.jl @@ -1515,7 +1515,7 @@ kw"new" """ where -The `where` keyword creates a type that is an iterated union of other types, over all +The `where` keyword creates a [`UnionAll`](@ref) type, which may be thought of as an iterated union of other types, over all values of some variable. For example `Vector{T} where T<:Real` includes all [`Vector`](@ref)s where the element type is some kind of `Real` number.