From 56878419bd9adc0deb598e3fedb2b10e457e0f73 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Mon, 6 May 2019 22:46:32 -0700 Subject: [PATCH] Improved javadoc for main(). --- src/main/java/net/thauvin/erik/httpstatus/Reasons.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/net/thauvin/erik/httpstatus/Reasons.java b/src/main/java/net/thauvin/erik/httpstatus/Reasons.java index 77c6149..5a4ce5c 100644 --- a/src/main/java/net/thauvin/erik/httpstatus/Reasons.java +++ b/src/main/java/net/thauvin/erik/httpstatus/Reasons.java @@ -95,9 +95,9 @@ public final class Reasons { } /** - * Prints the status codes and reason phrases. + * Prints the reason phrase for the given status code(s). * - * @param args The command line arguments. + * @param args The status code(s), prints all if none. */ @SuppressWarnings("PMD.SystemPrintln") @SuppressFBWarnings("MUI_CONTAINSKEY_BEFORE_GET")