From f2c0ad484ed0cc827de5dd2ebf9982bdf1869081 Mon Sep 17 00:00:00 2001 From: xxxxxxjun Date: Fri, 3 Apr 2026 00:14:03 +0900 Subject: [PATCH] Fix typo in HttpRange error message Closes gh-36590 Signed-off-by: xxxxxxjun --- .../src/main/java/org/springframework/http/HttpRange.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-web/src/main/java/org/springframework/http/HttpRange.java b/spring-web/src/main/java/org/springframework/http/HttpRange.java index 289016fc35a..e7052b3bf5f 100644 --- a/spring-web/src/main/java/org/springframework/http/HttpRange.java +++ b/spring-web/src/main/java/org/springframework/http/HttpRange.java @@ -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); } }