Skip to content

Commit 3304a4e

Browse files
cscherreroschulz
authored andcommitted
Fix typos
1 parent 2138418 commit 3304a4e

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/combinators/transformedmeasure.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ const TransformVolCorr = PushFwdStyle
1313
"""
1414
AdaptRootMeasure()
1515
16-
Indicates that when applying a pushforward to a measure, it's
17-
[`rootmeasure`](@ref) not not be pushed forward. Instead, the root measure
16+
Indicates that when applying a pushforward to a measure, its
17+
[`rootmeasure`](@ref) need not be pushed forward. Instead, the root measure
1818
should be kept just "reshaped" to the new measurable space if necessary.
1919
2020
Density calculations for pushforward measures constructed with
@@ -30,7 +30,7 @@ const WithVolCorr = AdaptRootMeasure
3030
"""
3131
PushfwdRootMeasure()
3232
33-
Indicates than when applying a pushforward to a measure, it's
33+
Indicates that when applying a pushforward to a measure, its
3434
[`rootmeasure`](@ref) should be pushed forward with the same function.
3535
3636
Density calculations for pushforward measures constructed with

src/density.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import DensityInterface
1717
end
1818
1919
For measures `μ` and `ν`, `Density(μ,ν)` represents the _density function_
20-
`dμ/dν`, also called the _Radom-Nikodym derivative_:
20+
`dμ/dν`, also called the _Radon-Nikodym derivative_:
2121
https://en.wikipedia.org/wiki/Radon%E2%80%93Nikodym_theorem#Radon%E2%80%93Nikodym_derivative
2222
2323
Instead of calling this directly, users should call `density_rel(μ, ν)` or
@@ -37,7 +37,7 @@ export 𝒹
3737
"""
3838
𝒹(μ, base)
3939
40-
Compute the density (Radom-Nikodym derivative) of μ with respect to `base`. This
40+
Compute the density (Radon-Nikodym derivative) of μ with respect to `base`. This
4141
is a shorthand form for `density_rel(μ, base)`.
4242
"""
4343
𝒹(μ, base) = density_rel(μ, base)
@@ -58,7 +58,7 @@ DensityInterface.logfuncdensity(d::Density) = throw(MethodError(logfuncdensity,
5858
end
5959
6060
For measures `μ` and `ν`, `LogDensity(μ,ν)` represents the _log-density function_
61-
`log(dμ/dν)`, also called the _Radom-Nikodym derivative_:
61+
`log(dμ/dν)`, also called the _Radon-Nikodym derivative_:
6262
https://en.wikipedia.org/wiki/Radon%E2%80%93Nikodym_theorem#Radon%E2%80%93Nikodym_derivative
6363
6464
Instead of calling this directly, users should call `logdensity_rel(μ, ν)` or
@@ -78,7 +78,7 @@ export log𝒹
7878
"""
7979
log𝒹(μ, base)
8080
81-
Compute the log-density (Radom-Nikodym derivative) of μ with respect to `base`.
81+
Compute the log-density (Radon-Nikodym derivative) of μ with respect to `base`.
8282
This is a shorthand form for `logdensity_rel(μ, base)`
8383
"""
8484
log𝒹(μ, base) = logdensity_rel(μ, base)

src/getdof.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ struct NoDOF{MU} end
1313
Returns the effective number of degrees of freedom of variates of
1414
measure `μ`.
1515
16-
The effective NDOF my differ from the length of the variates. For example,
16+
The effective NDOF may differ from the length of the variates. For example,
1717
the effective NDOF for a Dirichlet distribution with variates of length `n`
1818
is `n - 1`.
1919

0 commit comments

Comments
 (0)