Fix typo in HttpRange error message

Closes gh-36590

Signed-off-by: xxxxxxjun <ryuu.public@gmail.com>
This commit is contained in:
xxxxxxjun
2026-04-03 15:41:14 +02:00
committed by Sam Brannen
parent d10460d775
commit f2c0ad484e
@@ -249,7 +249,7 @@ public abstract class HttpRange {
}
if (lastBytePos != null && lastBytePos < firstBytePos) {
throw new IllegalArgumentException("firstBytePosition=" + firstBytePos +
" should be less then or equal to lastBytePosition=" + lastBytePos);
" should be less than or equal to lastBytePosition=" + lastBytePos);
}
}