summaryrefslogtreecommitdiff
path: root/pngget.c
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-02-09 06:57:29 -0500
committerluz.paz <luzpaz@users.noreply.github.com>2018-02-09 06:57:29 -0500
commiteb91c0e4ed67fb4e8e8ffaaedfaf84e1c4b034fb (patch)
treec5beff7b6d3ddf164b89cc59d333cf682802b47f /pngget.c
parentd5e4915ebe57623801dba9ad88fb764fb84d3831 (diff)
More misc. typos
found via `codespell-q 3` please review
Diffstat (limited to 'pngget.c')
-rw-r--r--pngget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pngget.c b/pngget.c
index 26e9fb1c3..ae677361b 100644
--- a/pngget.c
+++ b/pngget.c
@@ -367,7 +367,7 @@ png_get_y_pixels_per_inch(png_const_structrp png_ptr, png_const_inforp info_ptr)
static png_fixed_point
png_fixed_inches_from_microns(png_const_structrp png_ptr, png_int_32 microns)
{
- /* Convert from metres * 1,000,000 to inches * 100,000, meters to
+ /* Convert from meters * 1,000,000 to inches * 100,000, meters to
* inches is simply *(100/2.54), so we want *(10/2.54) == 500/127.
* Notice that this can overflow - a warning is output and 0 is
* returned.