From a5df06cdd61c82c0fa04cc087f48090c44662ffa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yvonne=20Fr=C3=B6hlich?= <94163266+yvonnefroehlich@users.noreply.github.com> Date: Mon, 30 Sep 2024 09:26:17 +0200 Subject: [PATCH] DOC: Fix typo "ontop" to "on top" (#3472) --- examples/projections/nongeo/cartesian_linear.py | 2 +- examples/projections/nongeo/cartesian_logarithmic.py | 2 +- examples/projections/nongeo/cartesian_power.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/projections/nongeo/cartesian_linear.py b/examples/projections/nongeo/cartesian_linear.py index c08c6ecf5c4..84f2b6941b8 100644 --- a/examples/projections/nongeo/cartesian_linear.py +++ b/examples/projections/nongeo/cartesian_linear.py @@ -26,7 +26,7 @@ # The region parameter is specified as x_min, x_max, y_min, y_max fig.basemap(region=[0, 10, 0, 50], projection="X15c/10c", frame=["afg", "+gbisque"]) fig.plot(x=[3, 9, 2], y=[4, 9, 37], pen="2p,black") -# Plot data points ontop of the line +# Plot data points on top of the line # Use squares with a size of 0.3 centimeters, an "orange" fill and a "black" outline fig.plot(x=[3, 9, 2], y=[4, 9, 37], style="s0.3c", fill="orange", pen="black") fig.show() diff --git a/examples/projections/nongeo/cartesian_logarithmic.py b/examples/projections/nongeo/cartesian_logarithmic.py index 3a4ab6f10e2..ef354dba73f 100644 --- a/examples/projections/nongeo/cartesian_logarithmic.py +++ b/examples/projections/nongeo/cartesian_logarithmic.py @@ -38,7 +38,7 @@ # Set the line thickness to "2p", the color to "black", and the style to "dashed" fig.plot(x=xline, y=yline, pen="2p,black,dashed") -# Plot the square root values ontop of the line +# Plot the square root values on top of the line # Use squares with a size of 0.3 centimeters, an "orange" fill and a "black" outline # Symbols are not clipped if they go off the figure fig.plot(x=xpoints, y=ypoints, style="s0.3c", fill="orange", pen="black", no_clip=True) diff --git a/examples/projections/nongeo/cartesian_power.py b/examples/projections/nongeo/cartesian_power.py index 761011bce67..862ceba8595 100644 --- a/examples/projections/nongeo/cartesian_power.py +++ b/examples/projections/nongeo/cartesian_power.py @@ -35,7 +35,7 @@ # Use as color "black" (default) and as style "solid" (default) fig.plot(x=xvalues, y=yvalues, pen="thick,black,solid") -# Plot the data points ontop of the line +# Plot the data points on top of the line # Use circles with 0.3 centimeters diameter, with an "orange" fill and a "black" outline # Symbols are not clipped if they go off the figure fig.plot(x=xvalues, y=yvalues, style="c0.3c", fill="orange", pen="black", no_clip=True)