This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-imaging.git
The following commit(s) were added to refs/heads/master by this push: new 25435ab6 Fix spelling 25435ab6 is described below commit 25435ab682bdabed1277cedceaa77d455ad7f846 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Oct 31 07:44:12 2023 -0400 Fix spelling --- src/main/java/org/apache/commons/imaging/formats/png/PngWriter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/imaging/formats/png/PngWriter.java b/src/main/java/org/apache/commons/imaging/formats/png/PngWriter.java index 719971f5..eed6b4a7 100644 --- a/src/main/java/org/apache/commons/imaging/formats/png/PngWriter.java +++ b/src/main/java/org/apache/commons/imaging/formats/png/PngWriter.java @@ -35,10 +35,10 @@ import org.apache.commons.imaging.palette.PaletteFactory; public class PngWriter { /* - 1. IHDR: image header, which is the first chunk in a PNG datastream. + 1. IHDR: image header, which is the first chunk in a PNG data stream. 2. PLTE: palette table associated with indexed PNG images. 3. IDAT: image data chunks. - 4. IEND: image trailer, which is the last chunk in a PNG datastream. + 4. IEND: image trailer, which is the last chunk in a PNG data stream. The remaining 14 chunk types are termed ancillary chunk types, which encoders may generate and decoders may interpret.