Skip to content

Commit a74fd39

Browse files
authored
Replace argument with parameter in coastlines tutorial (#1128)
* Replace argument with parameter in coastlines tutorial * Replace 10i by 15c in projection parameter
1 parent d7de537 commit a74fd39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/tutorials/coastlines.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# Shorelines
2222
# ----------
2323
#
24-
# Use the ``shorelines`` argument to plot only the shorelines:
24+
# Use the ``shorelines`` parameter to plot only the shorelines:
2525

2626
fig = pygmt.Figure()
2727
fig.basemap(region="g", projection="W15c", frame=True)
@@ -78,11 +78,11 @@
7878
# Land and water
7979
# --------------
8080
#
81-
# Use the ``land`` and ``water`` arguments to specify a fill color for land and water
81+
# Use the ``land`` and ``water`` parameters to specify a fill color for land and water
8282
# bodies. The colors can be given by name or hex codes (like the ones used in HTML and
8383
# CSS):
8484

8585
fig = pygmt.Figure()
86-
fig.basemap(region="g", projection="W10i", frame=True)
86+
fig.basemap(region="g", projection="W15c", frame=True)
8787
fig.coast(land="#666666", water="skyblue")
8888
fig.show()

0 commit comments

Comments
 (0)