From 58c260404a9683d49465da4bcb22ddce0c7cbfc4 Mon Sep 17 00:00:00 2001 From: cdrobayna <155833565+cdrobayna@users.noreply.github.com> Date: Wed, 23 Oct 2024 12:31:50 -0400 Subject: [PATCH] fix: quotes problem fixed --- docs/modules/ROOT/pages/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/index.adoc b/docs/modules/ROOT/pages/index.adoc index 9ef7324e..9d0bb97f 100644 --- a/docs/modules/ROOT/pages/index.adoc +++ b/docs/modules/ROOT/pages/index.adoc @@ -8,6 +8,6 @@ The goal of the Spring CLI is to increase your productivity when you create new . User-provided `commands` provide a user-friendly way to define and run custom commands that can perform everyday tasks on your project. With declarative command definitions living alongside your code, you can easily create new controllers, add dependencies, or configure files. You can also run other command-line applications as needed, creating a client-side GitHub Actions like experience. -Following a "Plain Old Java Projects" approach to code generation, implemented in the `boot new` and `boot add` commands, lets companies and other groups of developers define a standard set of projects with preferred libraries and coding styles. By including a `README.md`` file in these projects, team members can quickly get started with new libraries or programming approaches. For instance, running `boot add jpa`` not only adds code to your project but also renames the `README.md` file to `README-jpa.md` file for easy discovery. +Following a "Plain Old Java Projects" approach to code generation, implemented in the `boot new` and `boot add` commands, lets companies and other groups of developers define a standard set of projects with preferred libraries and coding styles. By including a `README.md` file in these projects, team members can quickly get started with new libraries or programming approaches. For instance, running `boot add jpa` not only adds code to your project but also renames the `README.md` file to `README-jpa.md` file for easy discovery. User-defined commands are ideal for repetitive coding tasks. Since command definitions live alongside the your code, anyone on the your team can contribute or improve existing commands without the need to create, update, and publish additional artifacts or projects.