Skip to content

Commit 0ea293a

Browse files
committed
fixed formatting
1 parent 1886fa8 commit 0ea293a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/interface.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ standard iteration.
8686
By default, this simply calls [`AbstractMCMC.step`](@ref).
8787
"""
8888
step_warmup(rng, model, sampler; kwargs...) = step(rng, model, sampler; kwargs...)
89-
step_warmup(rng, model, sampler, state; kwargs...) = step(rng, model, sampler, state; kwargs...)
89+
function step_warmup(rng, model, sampler, state; kwargs...)
90+
return step(rng, model, sampler, state; kwargs...)
91+
end
9092

9193
"""
9294
samples(sample, model, sampler[, N; kwargs...])

0 commit comments

Comments
 (0)