From 06b893320cdf834c5560e6584c58e923dd3a2b8c Mon Sep 17 00:00:00 2001 From: Nikos Ignatiadis Date: Sun, 21 Aug 2022 10:44:52 +0300 Subject: [PATCH] fix two typos --- src/combinators/affine.jl | 2 +- src/combinators/convolve.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/combinators/affine.jl b/src/combinators/affine.jl index 0f902e98..4c8f45ad 100644 --- a/src/combinators/affine.jl +++ b/src/combinators/affine.jl @@ -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)) diff --git a/src/combinators/convolve.jl b/src/combinators/convolve.jl index 3e920cc7..039fa983 100644 --- a/src/combinators/convolve.jl +++ b/src/combinators/convolve.jl @@ -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(μ, ν)