Skip to content

Commit

Permalink
Fix capitalization in section header
Browse files Browse the repository at this point in the history
  • Loading branch information
jkrumbiegel committed Oct 23, 2024
1 parent f7abe80 commit a1c513b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/explanations/scenes.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ A Scene's subscenes (also called children) can be accessed through `scene.childr

Any `Scene` with an axis also has a `camera` associated with it; this can be accessed through `camera(scene)`, and its controls through `cameracontrols(scene)`. More documentation about these is in the [Cameras](@ref) section.

`Scene`s have a configurable size. You can set the size in device-independent pixels by doing `Scene(size = (500, 500))`. (More about sizes, resolutions and units in [Figure size and resolution](@ref) or [How to match Figure size, font sizes and dpi](@ref))
`Scene`s have a configurable size. You can set the size in device-independent pixels by doing `Scene(size = (500, 500))`. (More about sizes, resolutions and units in [Figure size and resolution](@ref) or [How to match figure size, font sizes and dpi](@ref))

Any keyword argument given to the `Scene` will be propagated to its plots; therefore, you can set the palette or the colormap in the Scene itself.

Expand Down
2 changes: 1 addition & 1 deletion docs/src/how-to/match-figure-size-font-sizes-and-dpi.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# How to match Figure size, font sizes and dpi
# How to match figure size, font sizes and dpi

We want to create three plots for inclusion in a document. These are the requirements:

Expand Down

0 comments on commit a1c513b

Please sign in to comment.