summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2010-08-18 08:14:54 -0500
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2010-08-18 08:17:18 -0500
commitea2f7e07d7e3e6bd7643292b0cea165dfea61bba (patch)
tree6fe0d4c5e341d56e199accad8446de2ef4f998ad
parente600c51355ac36a48b2d424d7082a3a0f5dffaa0 (diff)
downloadlibpng-1.5.0beta42.tar.gz
[devel] Imported from libpng-1.5.0beta42.tarv1.5.0beta42
-rw-r--r--png.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/png.h b/png.h
index 9bf4f4d3a..a4e0a6b75 100644
--- a/png.h
+++ b/png.h
@@ -773,7 +773,7 @@ typedef png_row_info FAR * FAR * png_row_infopp;
* own. The png_error_ptr type should match that of user-supplied warning
* and error functions, while the png_rw_ptr type should match that of the
* user read/write data functions. Note that the 'write' function must not
- * modify the buffer it is passed, the 'read' function, on the other hand, is
+ * modify the buffer it is passed. The 'read' function, on the other hand, is
* expected to return the read data in the buffer.
*/
typedef struct png_struct_def png_struct;
@@ -1191,7 +1191,7 @@ PNG_EXPORT(void,png_read_image,(png_structp png_ptr, png_bytepp image),,57);
/* Write a row of image data */
PNG_EXPORT(void,png_write_row,(png_structp png_ptr, png_const_bytep row),,58);
-/* Write a few rows of image data: (*row) is not written, however the type is
+/* Write a few rows of image data: (*row) is not written; however, the type is
* declared as writeable to maintain compatibility with previous versions of
* libpng and to allow the 'display_row' array from read_rows to be passed
* unchanged to write_rows.
@@ -1449,7 +1449,7 @@ PNG_EXPORT(void,png_process_data,(png_structp png_ptr, png_infop info_ptr,
png_bytep buffer, png_size_t buffer_size),,92);
/* Function that combines rows. 'new_row' is a flag that should come from the
- * callback and be non-NULL if anything needs to be done, the library stores its
+ * callback and be non-NULL if anything needs to be done; the library stores its
* own version of the new data internally and ignores the passed in value.
*/
PNG_EXPORT(void,png_progressive_combine_row,(png_structp png_ptr,