diff --git a/README.md b/README.md index 77e7189..6223c1e 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ To create a [Spring Boot executable Web Archive](https://docs.spring.io/spring-b (WAR) from the current project: ```java -@BuildCommand(summary = "Create an executable WAR for the project") +@BuildCommand(summary = "Creates an executable WAR for the project") public void bootwar() throws Exception { new BootWarOperation() .fromProject(this) diff --git a/examples/src/bld/java/com/example/demo/DemoApplicationBuild.java b/examples/src/bld/java/com/example/demo/DemoApplicationBuild.java index ec79a98..b78ef7e 100644 --- a/examples/src/bld/java/com/example/demo/DemoApplicationBuild.java +++ b/examples/src/bld/java/com/example/demo/DemoApplicationBuild.java @@ -57,7 +57,7 @@ public class DemoApplicationBuild extends WebProject { .execute(); } - @BuildCommand(summary = "Create an executable WAR for the project") + @BuildCommand(summary = "Creates an executable WAR for the project") public void bootwar() throws Exception { new BootWarOperation() .fromProject(this)