From d5e3e991fa7edd031327a97d633b14f5498a1d35 Mon Sep 17 00:00:00 2001 From: d10xa Date: Thu, 8 Oct 2015 13:25:43 +0300 Subject: [PATCH] Fix typo Closes gh-4120 --- .../org/springframework/boot/cli/command/jar/JarCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/jar/JarCommand.java b/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/jar/JarCommand.java index 8142772ea6..91702fe8cb 100644 --- a/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/jar/JarCommand.java +++ b/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/jar/JarCommand.java @@ -96,7 +96,7 @@ public class JarCommand extends OptionParsingCommand { "Pattern applied to directories on the classpath to find files to include in the resulting jar") .withRequiredArg().withValuesSeparatedBy(",").defaultsTo(""); this.excludeOption = option("exclude", - "Pattern applied to directories on the claspath to find files to exclude from the resulting jar") + "Pattern applied to directories on the classpath to find files to exclude from the resulting jar") .withRequiredArg().withValuesSeparatedBy(",").defaultsTo(""); }