Skip to content

Commit

Permalink
Fix: Command create commands (#10736)
Browse files Browse the repository at this point in the history
Create a client using `create-client helloClient` will ends up by creating `HelloClientClient.groovy` file, and so is `create-controller` command.
  • Loading branch information
bitsnaps authored Apr 18, 2024
1 parent 6bc588b commit e71c488
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/docs/guide/languageSupport/groovy.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ We can also create a client - don't forget Micronaut framework can act as a clie
[source,bash]
.Create a client
----
mn> create-client helloClient
mn> create-client hello
| Rendered template Client.groovy to destination src/main/groovy/hello/world/HelloClient.groovy
----

Expand All @@ -98,7 +98,7 @@ Now let's create a controller:
[source,bash]
.Create a controller
----
mn> create-controller helloController
mn> create-controller hello
| Rendered template Controller.groovy to destination src/main/groovy/hello/world/HelloController.groovy
| Rendered template ControllerSpec.groovy to destination src/test/groovy/hello/world/HelloControllerSpec.groovy
mn>
Expand Down

0 comments on commit e71c488

Please sign in to comment.