Skip to content

Commit

Permalink
Fix typos in first figure tutorial (#2653)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgrund authored Sep 1, 2023
1 parent 884e67e commit 4f18e0e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/get_started/01_first_figure.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
# Add a frame
# -----------
#
# While that the map's colors, projection, and size have been set, the region
# While the map's colors, projection, and size have been set, the region
# that is being displayed is not apparent. A frame can be added to
# annotate the latitude and longitude of the region.
#
Expand All @@ -144,7 +144,7 @@
# -----------
#
# The ``frame`` parameter can be used to add a title to the figure. The title
# is set with by passing ``"+t"`` followed by the title (e.g. setting the map
# is set by passing ``"+t"`` followed by the title (e.g. setting the map
# title to "Title" would be ``"+tTitle"``).
#
# To pass multiple arguments to ``frame``, a list can be used, as shown in the
Expand Down Expand Up @@ -172,12 +172,12 @@
# 1. Make a map of Germany using its ISO country code ("DE"). Pass the ISO
# code as a Python string to the ``region`` parameter.
#
# 2. Change the color of the land to "khaki" and the water to "azure".
# 2. Change the color of the landmass to "khaki" and the water to "azure".
#
# 3. Change the color of the lakes (using the ``lakes`` parameter) to "red".
#
# 4. Create a global map. Set the region to "d" to center the map at the Prime
# Meridian or "g" to center the map at the International Date Line. When the
# region is set without using a list full of integers or floating numbers,
# the argument needs to be passed as a Python string. Create a map with a
# width of 15 centimeters using the Mollwide ("W") projection.
# width of 15 centimeters using the Mollweide ("W") projection.

0 comments on commit 4f18e0e

Please sign in to comment.