Skip to content

Commit 84c7008

Browse files
committed
doc: jldoctest periodsleep reduce sample time for slow CI runs
1 parent c41fc25 commit 84c7008

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sim_model.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ ms. Can be used to implement simple soft real-time simulations, see the example
316316
317317
# Examples
318318
```jldoctest
319-
julia> model = LinModel(tf(2, [0.3, 1]), 0.1);
319+
julia> model = LinModel(tf(2, [0.3, 1]), 0.25);
320320
321321
julia> function sim_realtime!(model)
322322
t_0 = time()
@@ -330,8 +330,8 @@ julia> function sim_realtime!(model)
330330
331331
julia> sim_realtime!(model)
332332
0.0
333-
0.1
334-
0.2
333+
0.25
334+
0.5
335335
```
336336
"""
337337
function periodsleep(model::SimModel, busywait=false)

0 commit comments

Comments
 (0)