Skip to content

Commit a5df06c

Browse files
DOC: Fix typo "ontop" to "on top" (#3472)
1 parent 9ddd91e commit a5df06c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/projections/nongeo/cartesian_linear.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The region parameter is specified as x_min, x_max, y_min, y_max
2727
fig.basemap(region=[0, 10, 0, 50], projection="X15c/10c", frame=["afg", "+gbisque"])
2828
fig.plot(x=[3, 9, 2], y=[4, 9, 37], pen="2p,black")
29-
# Plot data points ontop of the line
29+
# Plot data points on top of the line
3030
# Use squares with a size of 0.3 centimeters, an "orange" fill and a "black" outline
3131
fig.plot(x=[3, 9, 2], y=[4, 9, 37], style="s0.3c", fill="orange", pen="black")
3232
fig.show()

examples/projections/nongeo/cartesian_logarithmic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
# Set the line thickness to "2p", the color to "black", and the style to "dashed"
3939
fig.plot(x=xline, y=yline, pen="2p,black,dashed")
4040

41-
# Plot the square root values ontop of the line
41+
# Plot the square root values on top of the line
4242
# Use squares with a size of 0.3 centimeters, an "orange" fill and a "black" outline
4343
# Symbols are not clipped if they go off the figure
4444
fig.plot(x=xpoints, y=ypoints, style="s0.3c", fill="orange", pen="black", no_clip=True)

examples/projections/nongeo/cartesian_power.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
# Use as color "black" (default) and as style "solid" (default)
3636
fig.plot(x=xvalues, y=yvalues, pen="thick,black,solid")
3737

38-
# Plot the data points ontop of the line
38+
# Plot the data points on top of the line
3939
# Use circles with 0.3 centimeters diameter, with an "orange" fill and a "black" outline
4040
# Symbols are not clipped if they go off the figure
4141
fig.plot(x=xvalues, y=yvalues, style="c0.3c", fill="orange", pen="black", no_clip=True)

0 commit comments

Comments
 (0)