From 8e01e82e85917efbe6c3d6d3fb0e6b4d2786964a Mon Sep 17 00:00:00 2001 From: Oscar Smith Date: Mon, 13 Jun 2022 14:46:40 -0400 Subject: [PATCH] `sizeof` doc improvement (#45664) Currently references `summarysize` which does not exist. --- base/essentials.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/essentials.jl b/base/essentials.jl index 74c4624856896..906c36ad9c003 100644 --- a/base/essentials.jl +++ b/base/essentials.jl @@ -513,7 +513,7 @@ reinterpret(::Type{T}, x) where {T} = bitcast(T, x) Size, in bytes, of the canonical binary representation of the given `DataType` `T`, if any. Or the size, in bytes, of object `obj` if it is not a `DataType`. -See also [`summarysize`](@ref). +See also [`Base.summarysize`](@ref). # Examples ```jldoctest