Skip to content

Commit c7e61e4

Browse files
committed
Polish "Remove 'etc' in reference documentation"
See gh-28497
1 parent 0d025b6 commit c7e61e4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto/data-access.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Spring Data can create implementations of `@Repository` interfaces of various fl
171171
Spring Boot handles all of that for you, as long as those `@Repositories` are included in the same package (or a sub-package) of your `@EnableAutoConfiguration` class.
172172

173173
For many applications, all you need is to put the right Spring Data dependencies on your classpath.
174-
There is a `spring-boot-starter-data-jpa` for JPA, `spring-boot-starter-data-mongodb` for Mongodb, and other starters.
174+
There is a `spring-boot-starter-data-jpa` for JPA, `spring-boot-starter-data-mongodb` for Mongodb, and various other starters for supported technologies.
175175
To get started, create some repository interfaces to handle your `@Entity` objects.
176176

177177
Spring Boot tries to guess the location of your `@Repository` definitions, based on the `@EnableAutoConfiguration` it finds.

spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto/webserver.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,8 @@ As of Undertow 1.4.0+, both `h2` and `h2c` are supported on JDK 8 without any ad
233233

234234
[[howto.webserver.configure]]
235235
=== Configure the Web Server
236-
Generally, you should first consider using one of the many available configuration keys and customize your web server by adding new entries in your `application.properties` (or `application.yml`, or environment, or other settings). See "`<<howto#howto.properties-and-configuration.discover-build-in-options-for-external-properties>>`").
236+
Generally, you should first consider using one of the many available configuration keys and customize your web server by adding new entries in your `application.properties` or `application.yml` file.
237+
See "`<<howto#howto.properties-and-configuration.discover-build-in-options-for-external-properties>>`").
237238
The `server.{asterisk}` namespace is quite useful here, and it includes namespaces like `server.tomcat.{asterisk}`, `server.jetty.{asterisk}` and others, for server-specific features.
238239
See the list of <<application-properties#application-properties>>.
239240

0 commit comments

Comments
 (0)