On Distributions v0.24.1, the mean-only constructor for Normal defaults to a variance of 1:
julia> using Distributions
julia> Normal(0)
Normal{Float64}(μ=0.0, σ=1.0)
while the mean-only constructor for MvNormal defaults to a covariance of 0:
julia> MvNormal(zeros(2))
ZeroMeanDiagNormal(
dim: 2
μ: 2-element Zeros{Float64}
Σ: [0.0 0.0; 0.0 0.0]
)
It seems to me that by providing the mean only, the user would usually expect an identity covariance matrix, analogous to Normal.