From 32abe71df48dcf32703f8bbcffa2f35a54152467 Mon Sep 17 00:00:00 2001 From: Jeff Bezanson Date: Wed, 12 Jan 2022 15:55:22 -0500 Subject: [PATCH] fix typo in doc string for `display` (#43781) --- base/multimedia.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/multimedia.jl b/base/multimedia.jl index 5d9e3e807d159..c087c5210be2f 100644 --- a/base/multimedia.jl +++ b/base/multimedia.jl @@ -300,7 +300,7 @@ xdisplayable(D::AbstractDisplay, @nospecialize args...) = applicable(display, D, display(mime, x) display(d::AbstractDisplay, mime, x) -AbstractDisplay `x` using the topmost applicable display in the display stack, typically using the +Display `x` using the topmost applicable display in the display stack, typically using the richest supported multimedia output for `x`, with plain-text [`stdout`](@ref) output as a fallback. The `display(d, x)` variant attempts to display `x` on the given display `d` only, throwing a [`MethodError`](@ref) if `d` cannot display objects of this type.