From fb7642523d11ded05d0f904262ca1f2f578cd353 Mon Sep 17 00:00:00 2001 From: core-man Date: Wed, 10 Mar 2021 14:08:19 +0800 Subject: [PATCH] Change argument to parameter --- examples/tutorials/plot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/tutorials/plot.py b/examples/tutorials/plot.py index 629a839cf89..abfac77c743 100644 --- a/examples/tutorials/plot.py +++ b/examples/tutorials/plot.py @@ -71,12 +71,12 @@ fig.show() ######################################################################################## -# Notice that we didn't include the size in the ``style`` argument this time, just the +# Notice that we didn't include the size in the ``style`` parameter this time, just the # symbol ``c`` (circles) and the unit ``c`` (centimeter). So in this case, the sizes # will be interpreted as being in centimeters. # # We can also map the colors of the markers to the depths by passing an array to the -# ``color`` argument and providing a colormap name (``cmap``). We can even use the new +# ``color`` parameter and providing a colormap name (``cmap``). We can even use the new # matplotlib colormap "viridis". Here, we first create a continuous colormap # ranging from the minimum depth to the maximum depth of the earthquakes # using :func:`pygmt.makecpt`, then set ``cmap=True`` in :func:`pygmt.Figure.plot`