Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix typo in dev docs #807

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/source/developer_notes/layouts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Layouts
PlotArea
--------

This is the main base class within layouts. A ``Figure`` and ``Dock`` are areas within a ``Subplot`` that
inherit from ``PlotArea``.
This is the main base class within layouts. A ``Subplot`` and ``Dock`` are areas within a ``Figure``.
``Subplot`` and ``Dock`` inherit from ``PlotArea``.

``PlotArea`` has the following key properties that allow it to be a "plot area" that can be used to view graphical objects:

Expand Down Expand Up @@ -81,4 +81,4 @@ Now that we have understood ``PlotArea`` and ``Subplot`` we need a way for the u

A ``Figure`` contains a grid of subplot and has methods such as ``show()`` to output the figure.
``Figure.__init__`` basically does a lot of parsing of user arguments to determine how to create
the subplots. All subplots within a ``Figure`` share the same canvas and use different viewports to create the subplots.
the subplots. All subplots within a ``Figure`` share the same canvas and use different viewports to create the subplots.