From f0cf85bc4719ba6e3ed05a4d20486ea1da8d449b Mon Sep 17 00:00:00 2001 From: Neven Sajko Date: Fri, 1 Nov 2024 09:35:24 +0100 Subject: [PATCH] xref `UnionAll` in the doc string of `where` --- 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.