From a98bd22216fabe015635445be7ba9e77caabee72 Mon Sep 17 00:00:00 2001 From: Wessel van Norel Date: Mon, 12 Aug 2019 16:49:37 +0200 Subject: [PATCH] SLF4j-466: fixed typo in javadoc --- slf4j-api/src/main/java/org/slf4j/helpers/Util.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/slf4j-api/src/main/java/org/slf4j/helpers/Util.java b/slf4j-api/src/main/java/org/slf4j/helpers/Util.java index 50a7bb7fc..ab92f326e 100755 --- a/slf4j-api/src/main/java/org/slf4j/helpers/Util.java +++ b/slf4j-api/src/main/java/org/slf4j/helpers/Util.java @@ -129,11 +129,12 @@ static final public void report(String msg) { } /** - * Helper method to determine if an {@link Object} array contains an {@link Throwable} as last element + * Helper method to determine if an {@link Object} array contains a {@link Throwable} as last element * * @param argArray * The arguments off which we want to know if it contains a {@link Throwable} as last element - * @return if the last parameter in argArray is a Throwable this method will return it, otherwise it returns null + * @return if the last {@link Object} in argArray is a {@link Throwable} this method will return it, + * otherwise it returns null */ public static Throwable getThrowableCandidate(final Object[] argArray) { if (argArray == null || argArray.length == 0) {