@@ -308,8 +308,8 @@ can set up default values for your application in `application.properties` (or w
308308other basename you choose with `spring.config.name`) and override it at runtime with a
309309different file, keeping the defaults.
310310
311- NOTE: if you use environment variables not system properties, most operating systems
312- disallow period-separated key names, but you can use underscores instead (e.g.
311+ NOTE: If you use environment variables rather than system properties, most operating
312+ systems disallow period-separated key names, but you can use underscores instead (e.g.
313313`SPRING_CONFIG_NAME` instead of `spring.config.name`).
314314
315315NOTE: If you are running in a container then JNDI properties (in `java:comp/env`) or
@@ -324,7 +324,7 @@ In addition to `application.properties` files, profile specific properties can a
324324defined using the naming convention `application-{profile}.properties`.
325325
326326Profile specific properties are loaded from the same locations as standard
327- `application.properties`, with profiles specific files overriding the default ones.
327+ `application.properties`, with profile specific files overriding the default ones.
328328
329329
330330
@@ -369,7 +369,7 @@ For example, the following YAML document:
369369[source,yaml,indent=0]
370370----
371371 environments:
372- dev:`
372+ dev:
373373 url: http://dev.bar.com
374374 name: Developer Setup
375375 prod:
@@ -436,7 +436,7 @@ placeholders syntax to access YAML properties.
436436[[boot-features-external-config-multi-profile-yaml]]
437437==== Multi-profile YAML documents
438438You can specify multiple profile-specific YAML documents in a single file by
439- by using a `spring.profiles` key to indicate when the document applies. For example:
439+ using a `spring.profiles` key to indicate when the document applies. For example:
440440
441441[source,yaml,indent=0]
442442----
@@ -675,12 +675,12 @@ http://logging.apache.org/log4j/[Log4J] and
675675http://logback.qos.ch/[Logback].
676676In each case there is console output and file output (rotating, 10 Mb file size).
677677
678- By default, If you use the ``Starter POMs'', Logback will be used for logging. Appropriate
678+ By default, if you use the ``Starter POMs'', Logback will be used for logging. Appropriate
679679Logback routing is also included to ensure that dependent libraries that use
680680Java Util Logging, Commons Logging, Log4J or SLF4J will all work correctly.
681681
682682TIP: There are a lot of logging frameworks available for Java. Don't worry if the above
683- list seems confusing, generally you won't need to change your logging dependencies and
683+ list seems confusing. Generally you won't need to change your logging dependencies and
684684the Spring Boot defaults will work just fine.
685685
686686
@@ -700,7 +700,7 @@ The default log output from Spring Boot looks like this:
700700
701701The following items are output:
702702
703- * Date and Time -- Millesecond precision and easily sortable.
703+ * Date and Time -- Millisecond precision and easily sortable.
704704* Log Level -- `ERROR`, `WARN`, `INFO`, `DEBUG` or `TRACE`.
705705* Process ID.
706706* A `---` separator to distinguish the start of actual log messages.
@@ -801,7 +801,7 @@ To help with the customization some other properties are transferred from the Sp
801801All the logging systems supported can consult System properties when parsing their
802802configuration files. See the default configurations in `spring-boot.jar` for examples.
803803
804- WARNING: There are know classloading issues with Java Util Logging that cause problems
804+ WARNING: There are known classloading issues with Java Util Logging that cause problems
805805when running from an ``executable jar''. We recommend that you avoid it if at all
806806possible.
807807
@@ -1335,7 +1335,7 @@ Production database connections can also be auto-configured using a pooling
13351335* Lastly, if Commons DBCP2 is available we will use it
13361336
13371337If you use the `spring-boot-starter-jdbc` or `spring-boot-starter-data-jpa`
1338- ``starter POMs'' you will automcatically get a dependency to `tomcat-jdbc`.
1338+ ``starter POMs'' you will automatically get a dependency to `tomcat-jdbc`.
13391339
13401340NOTE: Additional connection pools can always be configured manually. If you define your
13411341own `DataSource` bean, auto-configuration will not occur.
0 commit comments