Skip to content

Commit

Permalink
fixed syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
torfjelde committed May 17, 2024
1 parent 826032d commit 8b9761f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bijectors/ordered.jl
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ end

bijector(d::OrderedDistribution) = d.bijector

Base.eltype(::Type{<:OrderedDistribution{D}) where {D} = eltype(D)
Base.eltype(::Type{<:OrderedDistribution{D}}) where {D} = eltype(D)
Base.eltype(d::OrderedDistribution) = eltype(d.dist)
function Distributions._logpdf(d::OrderedDistribution, x::AbstractVector{<:Real})
lp = Distributions.logpdf(d.dist, x)
Expand Down

0 comments on commit 8b9761f

Please sign in to comment.