Skip to content

Commit 21339aa

Browse files
committed
Fix alignment
1 parent 4aa4074 commit 21339aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solutions/2.2-vmin_vmax_imshow_and_colorbars.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# Now you're on your own!
1717
for ax, data in zip(axes, [data1, data2, data3]):
18-
# Display data, explicitly making the colormap cover values from 0 to 3
18+
# Display data, explicitly making the colormap cover values from 0 to 3
1919
im = ax.imshow(data, vmin=0, vmax=3, interpolation='nearest')
2020

2121
fig.colorbar(im, cax=cax, orientation='horizontal')

0 commit comments

Comments
 (0)