Skip to content

Commit 0358c80

Browse files
committed
Polish "Fix grammar in README.adoc"
See gh-28835
1 parent 7ec3aa5 commit 0358c80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ There are several modules in Spring Boot. Here is a quick overview:
9999

100100

101101
=== spring-boot
102-
The main library provides features that support the other parts of Spring Boot. These include:
102+
The main library providing features that support the other parts of Spring Boot. These include:
103103

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`.
@@ -114,7 +114,7 @@ Spring Boot can configure large parts of typical applications based on the conte
114114
A single `@EnableAutoConfiguration` annotation triggers auto-configuration of the Spring context.
115115

116116
Auto-configuration attempts to deduce which beans a user might need. For example, if `HSQLDB` is on the classpath, and the user has not configured any database connections, then they probably want an in-memory database to be defined.
117-
Auto-configuration will always back away as the user starts to define their beans.
117+
Auto-configuration will always back away as the user starts to define their own beans.
118118

119119

120120

@@ -143,7 +143,7 @@ This module provides many endpoints, including the `HealthEndpoint`, `Environmen
143143
This provides auto-configuration for actuator endpoints based on the content of the classpath and a set of properties.
144144
For instance, if Micrometer is on the classpath, it will auto-configure the `MetricsEndpoint`.
145145
It contains configuration to expose endpoints over HTTP or JMX.
146-
Just like Spring Boot AutoConfigure, this will back away as the user starts to define their beans.
146+
Just like Spring Boot AutoConfigure, this will back away as the user starts to define their own beans.
147147

148148

149149

0 commit comments

Comments
 (0)