Fix typo in KotlinClientCodegen.java user-visible error message (#17674)

This commit is contained in:
Neeme Praks 2024-01-22 17:40:37 +02:00 committed by GitHub
parent 659e21a4bf
commit 74a3a8870d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -771,7 +771,7 @@ public class KotlinClientCodegen extends AbstractKotlinCodegen {
private void processJvmSpringRestClientLibrary(final String infrastructureFolder) {
if (additionalProperties.getOrDefault(USE_SPRING_BOOT3, false).equals(false)) {
throw new RuntimeException("This library muse use spring boot 3. Try adding '--additional-properties useSpringBoot3=true' to your command.");
throw new RuntimeException("This library must use Spring Boot 3. Try adding '--additional-properties useSpringBoot3=true' to your command.");
}
proccessJvmSpring(infrastructureFolder);