Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Extra backtick in documentation #177

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.