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-compress.git
The following commit(s) were added to refs/heads/master by this push: new 3d74a3af4 Fix typo in comment 3d74a3af4 is described below commit 3d74a3af416ccf1347a657432d60f6855e3a34f4 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Apr 27 09:43:56 2024 -0400 Fix typo in comment --- .../org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.java b/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.java index 4a3be5203..fe0735e5f 100644 --- a/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.java +++ b/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.java @@ -196,7 +196,7 @@ public class ArArchiveOutputStream extends ArchiveOutputStream<ArArchiveEntry> { } else { offset += write(n); } - // Last modifed + // Last modified offset = fill(offset, 16, SPACE); final String m = String.valueOf(entry.getLastModified()); if (m.length() > 12) {