From 2ecc5c048c6f17bd3e0ea29de51b93885cf76e13 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Thu, 2 May 2024 15:42:20 -0400 Subject: [PATCH] Javadoc --- src/main/java/org/apache/commons/lang3/JavaVersion.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/JavaVersion.java b/src/main/java/org/apache/commons/lang3/JavaVersion.java index 492919498..355b6ab6e 100644 --- a/src/main/java/org/apache/commons/lang3/JavaVersion.java +++ b/src/main/java/org/apache/commons/lang3/JavaVersion.java @@ -330,7 +330,7 @@ private static float toFloatVersion(final String value) { } /** - * Whether this version of Java is at least the version of Java passed in. + * Tests whether this version of Java is at least the version of Java passed in. * *

For example:
* {@code myVersion.atLeast(JavaVersion.JAVA_1_4)}

@@ -343,7 +343,7 @@ public boolean atLeast(final JavaVersion requiredVersion) { } /** - * Whether this version of Java is at most the version of Java passed in. + * Tests whether this version of Java is at most the version of Java passed in. * *

For example:
* {@code myVersion.atMost(JavaVersion.JAVA_1_4)}