Skip to content

Commit

Permalink
Useless diff
Browse files Browse the repository at this point in the history
  • Loading branch information
gdalle committed Jan 13, 2024
1 parent de449b2 commit 9203e63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/univariate/continuous/normal.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ struct Normal{T<:Real} <: ContinuousUnivariateDistribution
Normal{T}::T, σ::T) where {T<:Real} = new{T}(µ, σ)
end

function Normal::T, σ::T; check_args::Bool=true) where {T<:Real}
function Normal::T, σ::T; check_args::Bool=true) where {T <: Real}
@check_args Normal (σ, σ >= zero(σ))
return Normal{T}(μ, σ)
end
Expand Down

0 comments on commit 9203e63

Please sign in to comment.