Skip to content

Commit dbb623b

Browse files
authored
Fix failing ref to docstring (#4)
1 parent a44484e commit dbb623b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

docs/make.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,16 @@ makedocs(
88
prettyurls = get(ENV, "CI", nothing) == "true"
99
),
1010

11+
# See https://github.com/jump-dev/JuMP.jl/issues/1576
12+
strict = true,
13+
1114
pages = [
1215
"Introduction" => "index.md",
1316
]
1417
)
1518

1619
deploydocs(
1720
repo = "github.com/JuliaAlgebra/TrigPolys.jl.git",
21+
22+
push_preview = true,
1823
)

src/TrigPolys.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ end
202202
"""
203203
(p::TrigPoly)(x::Number)
204204
205-
Evaluate `p(x)` at a single point. See [TrigPolys.evaluate](@red) for faster
205+
Evaluate `p(x)` at a single point. See [`TrigPolys.evaluate`](@ref) for faster
206206
evaluation for special points on the unit circle.
207207
"""
208208
function (p::TrigPoly)(x::Number)

0 commit comments

Comments
 (0)