Skip to content

Commit

Permalink
fix two typos
Browse files Browse the repository at this point in the history
  • Loading branch information
nignatiadis committed Aug 21, 2022
1 parent a91b323 commit 06b8933
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/combinators/affine.jl
Original file line number Diff line number Diff line change
Expand Up @@ -351,4 +351,4 @@ std(d::Affine{(:μ,)}) = std(parent(d))
std(d::Affine{(:σ,)}) = d.σ * std(parent(d))
std(d::Affine{(:λ,)}) = d.λ \ std(parent(d))
std(d::Affine{(:μ, :σ)}) = d.σ * std(parent(d))
std(f::Affine{(:μ, :λ)}) = d.λ \ std(parent(d))
std(d::Affine{(:μ, :λ)}) = d.λ \ std(parent(d))
2 changes: 1 addition & 1 deletion src/combinators/convolve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ struct Convolution{M,N} <: AbstractMeasure
end

"""
If μ, ν are subtypes of `AbstractMeasure` or satisfy the Measure interface, r
If μ, ν are subtypes of `AbstractMeasure` or satisfy the Measure interface,
then `convolve(μ, ν)` is a measure, called the convolution of μ and ν.
"""
convolve(μ, ν) = Convolution(μ, ν)
Expand Down

0 comments on commit 06b8933

Please sign in to comment.