Skip to content

Commit b9b586b

Browse files
committed
Fix typos in docstrings
1 parent f27fd2c commit b9b586b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/src/sampling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Implementation of dominated Coupling From The Past (dCFTP) developed by [KeMo99]
7474
**See also**
7575

7676
* [Hub16](@cite)
77-
* [Kendall's notes on perfect simulation](<https://warwick.ac.uk/fac/sci/statistics/staff/> academic-research/kendall/personal/ppt/428.pdf)
77+
* [Kendall's notes on perfect simulation](https://warwick.ac.uk/fac/sci/statistics/staff/academic-research/kendall/personal/ppt/428.pdf)
7878

7979
```@autodocs
8080
Modules = [PartialRejectionSampling]

src/common.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ The type `T` corresponds to the elements' type of the point process (vectors, gr
1111
abstract type AbstractPointProcess{T} end
1212
Base.eltype(pp::AbstractPointProcess{T}) where {T} = T
1313

14+
1415
@doc raw"""
1516
AbstractGraphPointProcess{T<:Vector{Float64}} <: AbstractPointProcess{T}
1617

src/spatial/dominated_cftp.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Implementation of dominated Coupling From The Past (dCFTP) developed by [KeMo99]
44
**See also**
55
66
- [Hub16](@cite)
7-
- [Kendall's notes on perfect simulation](https://warwick.ac.uk/fac/sci/statistics/staff/ academic-research/kendall/personal/ppt/428.pdf)
7+
- [Kendall's notes on perfect simulation](https://warwick.ac.uk/fac/sci/statistics/staff/academic-research/kendall/personal/ppt/428.pdf)
88
"""
99

1010
@doc raw"""

src/spatial/hard_core.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ where ``\beta > 0`` is called the background intensity and ``r > 0`` the interac
2222
2323
# Example
2424
25-
A realization for ``\beta=38`` and ``r=0.1`` on ``[0, 1]^2``.
25+
A realization for ``\beta=38`` and ``r=0.1`` on ``[0, 1]^2``, where points are marked with a circle of radius ``r/2``.
2626
2727
![assets/hard_core_spatial.png](assets/hard_core_spatial.png)
2828
"""
@@ -189,6 +189,7 @@ Default window (`win=nothing`) is `window(pp)=pp.window`.
189189
# Example
190190
191191
A illustration of the procedure for ``\beta=38`` and ``r=0.1`` on ``[0, 1]^2`` where points are marked with a circle of radius ``r/2``.
192+
Red disks highlight bad regions and orange disk, with radius ``r``, describe the resampling region.
192193
193194
![assets/hard_core_spatial_prs.gif](assets/hard_core_spatial_prs.gif)
194195
"""

src/spatial/strauss.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ StraussPointProcess{Array{Float64,1}}
6767
# Example
6868
6969
A illustration of the procedure for ``\beta=78, \gamma=0.1`` and ``r=0.07`` on ``[0, 1]^2`` where points are marked with a circle of radius ``r/2``.
70-
71-
![assets/strauss_spatial_prs.gif](assets/strauss_spatial_prs.gif)
7270
"""
7371
function StraussPointProcess(
7472
β::Real,

0 commit comments

Comments
 (0)