Skip to content

Commit b093ae0

Browse files
committed
Merge branch '2.6.x' into 2.7.x
Closes gh-28949
2 parents 2b38273 + 70c5eb9 commit b093ae0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.adoc

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Spring Boot helps you to create Spring-powered, production-grade applications an
66
It takes an opinionated view of the Spring platform so that new and existing users can quickly get to the bits they need.
77

88
You can use Spring Boot to create stand-alone Java applications that can be started using `java -jar` or more traditional WAR deployments.
9-
We also provide a command line tool that runs Spring scripts.
9+
We also provide a command-line tool that runs Spring scripts.
1010

1111
Our primary goals are:
1212

@@ -50,7 +50,7 @@ Here is a quick teaser of a complete Spring Boot application in Java:
5050
Are you having trouble with Spring Boot? We want to help!
5151

5252
* Check the {docs}/html/[reference documentation], especially the {docs}/html/howto.html#howto[How-to's] -- they provide solutions to the most common questions.
53-
* Learn the Spring basics -- Spring Boot builds on many other Spring projects; check the https://spring.io[spring.io] web-site for a wealth of reference documentation.
53+
* Learn the Spring basics -- Spring Boot builds on many other Spring projects; check the https://spring.io[spring.io] website for a wealth of reference documentation.
5454
If you are new to Spring, try one of the https://spring.io/guides[guides].
5555
* If you are upgrading, read the {github}/wiki[release notes] for upgrade instructions and "new and noteworthy" features.
5656
* Ask a question -- we monitor https://stackoverflow.com[stackoverflow.com] for questions tagged with https://stackoverflow.com/tags/spring-boot[`spring-boot`].
@@ -69,7 +69,7 @@ If you want to raise an issue, please follow the recommendations below:
6969
We like to know the Spring Boot version, operating system, and JVM version you're using.
7070
* If you need to paste code or include a stack trace, use Markdown.
7171
+++```+++ escapes before and after your text.
72-
* If possible, try to create a test-case or project that replicates the problem and attach it to the issue.
72+
* If possible, try to create a test case or project that replicates the problem and attach it to the issue.
7373

7474

7575

@@ -104,7 +104,7 @@ The main library providing features that support the other parts of Spring Boot.
104104
* The `SpringApplication` class, providing static convenience methods that can be used to write a stand-alone Spring Application.
105105
Its sole job is to create and refresh an appropriate Spring `ApplicationContext`.
106106
* Embedded web applications with a choice of container (Tomcat, Jetty, or Undertow).
107-
* First class externalized configuration support.
107+
* First-class externalized configuration support.
108108
* Convenience `ApplicationContext` initializers, including support for sensible logging defaults.
109109

110110

@@ -120,13 +120,13 @@ Auto-configuration will always back away as the user starts to define their own
120120

121121
=== spring-boot-starters
122122
Starters are a set of convenient dependency descriptors that you can include in your application.
123-
You get a one-stop-shop for all the Spring and related technology you need without having to hunt through sample code and copy paste loads of dependency descriptors.
123+
You get a one-stop shop for all the Spring and related technology you need without having to hunt through sample code and copy-paste loads of dependency descriptors.
124124
For example, if you want to get started using Spring and JPA for database access, include the `spring-boot-starter-data-jpa` dependency in your project, and you are good to go.
125125

126126

127127

128128
=== spring-boot-cli
129-
The Spring command line application compiles and runs Groovy source, allowing you to write the absolute minimum amount of code to get an application running.
129+
The Spring command-line application compiles and runs Groovy source, allowing you to write the absolute minimum amount of code to get an application running.
130130
Spring CLI can also watch files, automatically recompiling and restarting when they change.
131131

132132

@@ -160,7 +160,7 @@ It includes many annotations that can automatically configure a slice of your ap
160160

161161
=== spring-boot-loader
162162
Spring Boot Loader provides the secret sauce that allows you to build a single jar file that can be launched using `java -jar`.
163-
Generally you will not need to use `spring-boot-loader` directly, but instead work with the link:spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin[Gradle] or link:spring-boot-project/spring-boot-tools/spring-boot-maven-plugin[Maven] plugin.
163+
Generally, you will not need to use `spring-boot-loader` directly but work with the link:spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin[Gradle] or link:spring-boot-project/spring-boot-tools/spring-boot-maven-plugin[Maven] plugin instead.
164164

165165

166166

0 commit comments

Comments
 (0)