From 8d3f3b60fa9391ee66f1306fa57e51b221f76414 Mon Sep 17 00:00:00 2001 From: uvegla Date: Thu, 16 Jun 2016 21:58:46 +0200 Subject: [PATCH] Fix typo in documentation of Range#isEndedBy (closes #166) --- src/main/java/org/apache/commons/lang3/Range.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/lang3/Range.java b/src/main/java/org/apache/commons/lang3/Range.java index fb0ccdb52..40afba8c9 100644 --- a/src/main/java/org/apache/commons/lang3/Range.java +++ b/src/main/java/org/apache/commons/lang3/Range.java @@ -249,7 +249,7 @@ public final class Range implements Serializable { } /** - *

Checks whether this range starts with the specified element.

+ *

Checks whether this range ends with the specified element.

* * @param element the element to check for, null returns false * @return true if the specified element occurs within this range