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 367d9f0 Start sentence with a capital. 367d9f0 is described below commit 367d9f0592000eefe9b9b50d3cd36153dd329045 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Feb 13 10:18:45 2022 -0500 Start sentence with a capital. --- src/main/java/org/apache/commons/compress/archivers/Lister.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/Lister.java b/src/main/java/org/apache/commons/compress/archivers/Lister.java index 2a4c71f..0cc3aad 100644 --- a/src/main/java/org/apache/commons/compress/archivers/Lister.java +++ b/src/main/java/org/apache/commons/compress/archivers/Lister.java @@ -134,8 +134,8 @@ public final class Lister { private static void usage() { System.out.println("Parameters: archive-name [archive-type]\n"); - System.out.println("the magic archive-type 'zipfile' prefers ZipFile over ZipArchiveInputStream"); - System.out.println("the magic archive-type 'tarfile' prefers TarFile over TarArchiveInputStream"); + System.out.println("The magic archive-type 'zipfile' prefers ZipFile over ZipArchiveInputStream"); + System.out.println("The magic archive-type 'tarfile' prefers TarFile over TarArchiveInputStream"); } }