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

@@ -40,7 +40,7 @@ public class City implements Serializable {
protected City() {
// no-args constructor required by JPA spec
// this one is protected since it shouldn't be used directly
// this one is protected since it should not be used directly
}
public City(String name, String state) {

View File

@@ -28,7 +28,7 @@ public class MyApplication extends SpringBootServletInitializer {
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
// Customize the application or call application.sources(...) to add sources
// Since our example is itself a @Configuration class (via @SpringBootApplication)
// we actually don't need to override this method.
// we actually do not need to override this method.
return application;
}