From 90b2755b015a6ef563ca104e7381866462e4de3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Wed, 3 Sep 2014 12:54:45 -0400 Subject: [PATCH] Fix spelling --- doc/examples/plot_windowed_histogram.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/examples/plot_windowed_histogram.py b/doc/examples/plot_windowed_histogram.py index 7fb6fcc1..b6019465 100644 --- a/doc/examples/plot_windowed_histogram.py +++ b/doc/examples/plot_windowed_histogram.py @@ -124,12 +124,12 @@ axes[0, 1].axis('off') axes[1, 0].imshow(img, cmap='gray') axes[1, 0].imshow(similarity, cmap='jet', alpha=0.5) -axes[1, 0].set_title('Original image with overlayed similarity') +axes[1, 0].set_title('Original image with overlaid similarity') axes[1, 0].axis('off') axes[1, 1].imshow(rotated_img, cmap='gray') axes[1, 1].imshow(rotated_similarity, cmap='jet', alpha=0.5) -axes[1, 1].set_title('Rotated image with overlayed similarity') +axes[1, 1].set_title('Rotated image with overlaid similarity') axes[1, 1].axis('off') plt.show()