Skip to content

Commit

Permalink
Fixing bug in documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
byrdie committed Jun 7, 2023
1 parent 4f515b3 commit b71fae6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ndfilters/_trimmed_mean.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def trimmed_mean_filter(
img_filtered = ndfilters.trimmed_mean_filter(img, kernel_shape=21)
fig, axs = plt.subplots(ncols=2, sharex=True, sharey=True)
ax[0].set_title("original image");
axs[0].set_title("original image");
axs[0].imshow(img, cmap="gray");
axs[1].set_title("filtered image");
axs[1].imshow(img_filtered, cmap="gray");
Expand Down

0 comments on commit b71fae6

Please sign in to comment.