From c21f5da953562a8ac5f45c0a14b67f5be850c0c7 Mon Sep 17 00:00:00 2001 From: gobeomjun Date: Fri, 14 Nov 2025 01:44:26 +0900 Subject: [PATCH] Fix typo in PortInUseException Javadoc Change 'suppler' to 'supplier' in the `@param` documentation for the throwIfPortBindingException method. See gh-48124 Signed-off-by: gobeomjun --- .../org/springframework/boot/web/server/PortInUseException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/server/PortInUseException.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/server/PortInUseException.java index a88acfca18a..83d7a7d782e 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/server/PortInUseException.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/server/PortInUseException.java @@ -63,7 +63,7 @@ public class PortInUseException extends WebServerException { * Throw a {@link PortInUseException} if the given exception was caused by a "port in * use" {@link BindException}. * @param ex the source exception - * @param port a suppler used to provide the port + * @param port a supplier used to provide the port * @since 2.2.7 */ public static void throwIfPortBindingException(Exception ex, IntSupplier port) {