From 831e28b0016a03d29118426ae8fbf8d0f2f823eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henning=20P=C3=B6ttker?= Date: Thu, 2 Sep 2021 19:10:33 +0200 Subject: [PATCH] Fix typo in javadoc See gh-27856 --- .../main/java/org/springframework/boot/SpringApplication.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java index d243ddd6775f..38a42d464e8c 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java @@ -1353,7 +1353,7 @@ public static void main(String[] args) throws Exception { * {@link ExitCodeGenerator}. In the case of multiple exit codes the highest value * will be used (or if all values are negative, the lowest value will be used) * @param context the context to close if possible - * @param exitCodeGenerators exist code generators + * @param exitCodeGenerators exit code generators * @return the outcome (0 if successful) */ public static int exit(ApplicationContext context, ExitCodeGenerator... exitCodeGenerators) {