Skip to content

Commit

Permalink
Merge branch 'master' into sd/fix-colormap-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDanisch authored Aug 21, 2023
2 parents 3d6618c + 015df2e commit ff2b6de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/examples/plotting_functions/heatmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function mandelbrot(x, y)
for i in 1:30.0; abs(z) > 2 && return i; z = z^2 + c; end; 0
end

heatmap(-2:0.1:1, -1.1:0.1:1.1, mandelbrot,
heatmap(-2:0.001:1, -1.1:0.001:1.1, mandelbrot,
colormap = Reverse(:deep))
```
\end{examplefigure}
Expand Down

0 comments on commit ff2b6de

Please sign in to comment.