Skip to content

Commit

Permalink
Change deprecated kwarg in docs
Browse files Browse the repository at this point in the history
Quick Start docs previously used a deprecated kwarg in the
visualize section. The deprecated kwarg, `resolution`, is swapped
for `shape`
  • Loading branch information
imreddyTeja committed Sep 9, 2024
1 parent 564c753 commit 5b123f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ If we want to make a heatmap for `ta_max` at time of 100 s at altitude `z` of 30
import CairoMakie
import ClimaAnalysis.Visualize as viz

fig = Makie.Figure(resolution = (400, 600))
fig = Makie.Figure(size = (400, 600))

viz.plot!(
fig,
Expand Down

0 comments on commit 5b123f7

Please sign in to comment.