Remove english contractions from the documentation

See gh-28064
This commit is contained in:
Vincent Ricard
2021-09-19 18:42:43 +02:00
committed by Stephane Nicoll
parent 3ef17820e9
commit 52176b8ed6
25 changed files with 55 additions and 55 deletions

View File

@@ -113,7 +113,7 @@ For example, if you want to get started using Spring and JPA for database access
The starters contain a lot of the dependencies that you need to get a project up and running quickly and with a consistent, supported set of managed transitive dependencies.
.What's in a name
.What is in a name
****
All **official** starters follow a similar naming pattern; `+spring-boot-starter-*+`, where `+*+` is a particular type of application.
This naming structure is intended to help when you need to find a starter.

View File

@@ -57,7 +57,7 @@ Because you need more information about web requests while developing Spring MVC
This will give you information about the incoming request, which handler is processing it, the response outcome, etc.
If you wish to log all request details (including potentially sensitive information), you can turn on the configprop:spring.mvc.log-request-details[] or configprop:spring.codec.log-request-details[] configuration properties.
NOTE: If you don't want property defaults to be applied you can set configprop:spring.devtools.add-properties[] to `false` in your `application.properties`.
NOTE: If you do not want property defaults to be applied you can set configprop:spring.devtools.add-properties[] to `false` in your `application.properties`.
TIP: For a complete list of the properties that are applied by the devtools, see {spring-boot-devtools-module-code}/env/DevToolsPropertyDefaultsPostProcessor.java[DevToolsPropertyDefaultsPostProcessor].

View File

@@ -13,7 +13,7 @@ The following example shows a `@Service` Bean that uses constructor injection to
include::{docs-java}/using/springbeansanddependencyinjection/singleconstructor/MyAccountService.java[]
----
If a bean has more than one constructor, you'll need to mark the one you want Spring to use with `@Autowired`:
If a bean has more than one constructor, you will need to mark the one you want Spring to use with `@Autowired`:
[source,java,indent=0,subs="verbatim"]
----

View File

@@ -22,7 +22,7 @@ The <<using#using.using-the-springbootapplication-annotation, `@SpringBootApplic
For example, if you are writing a JPA application, the package of the `@SpringBootApplication` annotated class is used to search for `@Entity` items.
Using a root package also allows component scan to apply only on your project.
TIP: If you don't want to use `@SpringBootApplication`, the `@EnableAutoConfiguration` and `@ComponentScan` annotations that it imports defines that behavior so you can also use those instead.
TIP: If you do not want to use `@SpringBootApplication`, the `@EnableAutoConfiguration` and `@ComponentScan` annotations that it imports defines that behavior so you can also use those instead.
The following listing shows a typical layout: