Skip to content

Commit 1ec523b

Browse files
authored
line 603, 'schelling' instead of 'model' (#1120)
line 603 in docs/src/tutorial.jl changed from ```julia figure, _ = abmplot(model; agent_color = groupcolor, agent_marker = groupmarker, as = 10) # not executing ``` to ```julia figure, _ = abmplot(schelling; agent_color = groupcolor, agent_marker = groupmarker, agent_size = 10) ```
1 parent ab5f133 commit 1ec523b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/tutorial.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ groupmarker(a) = a.group == 1 ? :circle : :rect
600600

601601
# We pass those functions to [`abmplot`](@ref)
602602

603-
figure, _ = abmplot(model; agent_color = groupcolor, agent_marker = groupmarker, as = 10)
603+
figure, _ = abmplot(schelling; agent_color = groupcolor, agent_marker = groupmarker, as = 10)
604604
figure # returning the figure displays it
605605

606606
# The function [`abmvideo`](@ref) can be used to save an animation of the ABM into a video.

0 commit comments

Comments
 (0)