summaryrefslogtreecommitdiff
path: root/pngpriv.h
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2012-10-10 15:02:00 -0500
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2012-10-10 15:02:00 -0500
commita9f44be8c2a271a5fdcd789a435472d03ad9fb1d (patch)
treea4a51a70aa3be75f95da28e068cf4273e9b4f462 /pngpriv.h
parente15b1e8136daf5e813c9eca30d46360a8d64d0d8 (diff)
downloadlibpng-a9f44be8c2a271a5fdcd789a435472d03ad9fb1d.tar.gz
[libpng16] Minor documentation edits
Diffstat (limited to 'pngpriv.h')
-rw-r--r--pngpriv.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/pngpriv.h b/pngpriv.h
index f81fe6b52..b01c00d10 100644
--- a/pngpriv.h
+++ b/pngpriv.h
@@ -1694,14 +1694,14 @@ PNG_INTERNAL_FUNCTION(void,png_ascii_from_fixed,(png_const_structrp png_ptr,
#define PNG_FP_IS_POSITIVE(state) (((state) & PNG_FP_NZ_MASK) == PNG_FP_Z_MASK)
#define PNG_FP_IS_NEGATIVE(state) (((state) & PNG_FP_NZ_MASK) == PNG_FP_NZ_MASK)
-/* The actual parser. This can be called repeatedly, it updates
+/* The actual parser. This can be called repeatedly. It updates
* the index into the string and the state variable (which must
- * be initialzed to 0). It returns a result code, as above. There
+ * be initialized to 0). It returns a result code, as above. There
* is no point calling the parser any more if it fails to advance to
* the end of the string - it is stuck on an invalid character (or
* terminated by '\0').
*
- * Note that the pointer will consume an E or even an E+ then leave
+ * Note that the pointer will consume an E or even an E+ and then leave
* a 'maybe' state even though a preceding integer.fraction is valid.
* The PNG_FP_WAS_VALID flag indicates that a preceding substring was
* a valid number. It's possible to recover from this by calling
@@ -1839,7 +1839,7 @@ PNG_INTERNAL_FUNCTION(void, png_image_free, (png_imagep image), PNG_EMPTY);
#endif /* SIMPLIFIED READ/WRITE */
-/* Maintainer: Put new private prototypes here ^ and in libpngpf.3 */
+/* Maintainer: Put new private prototypes here ^ */
#include "pngdebug.h"