Skip to content

Commit 1b1ce6b

Browse files
committed
Merge pull request spring-projects#3403 from izeye/docs-20150702
* pr/3403: Fix typo
2 parents 74e9e07 + 631a02b commit 1b1ce6b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ content into your application; rather pick only the properties that you need.
580580
spring.devtools.restart.enabled=true # enable automatic restart
581581
spring.devtools.restart.exclude= # patterns that should be excluding for triggering a full restart
582582
spring.devtools.restart.poll-interval= # amount of time (in milliseconds) to wait between polling for classpath changes
583-
spring.devtools.restart.quiet-period= # amount of quiet time (in milliseconds) requited without any classpath changes before a restart is triggered
583+
spring.devtools.restart.quiet-period= # amount of quiet time (in milliseconds) required without any classpath changes before a restart is triggered
584584
spring.devtools.restart.trigger-file= # name of a specific file that when changed will trigger the restart
585585
spring.devtools.livereload.enabled=true # enable a livereload.com compatible server
586586
spring.devtools.livereload.port=35729 # server port.

spring-boot-docs/src/main/asciidoc/howto.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ typically in `application.properties` or `application.yml`. For example:
446446
server.port=8443
447447
server.ssl.key-store=classpath:keystore.jks
448448
server.ssl.key-store-password=secret
449-
server.ssl.key-password another-secret
449+
server.ssl.key-password=another-secret
450450
----
451451

452452
See {sc-spring-boot}/context/embedded/Ssl.{sc-ext}[`Ssl`] for details of all of the

spring-boot-docs/src/main/asciidoc/production-ready-features.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ The following system metrics are exposed by Spring Boot:
872872
* The application context uptime in milliseconds (`instance.uptime`)
873873
* The average system load (`systemload.average`)
874874
* Heap information in KB (`heap`, `heap.committed`, `heap.init`, `heap.used`)
875-
* Thread information (`threads`, `thread.peak`, `thead.daemon`)
875+
* Thread information (`threads`, `thread.peak`, `thread.daemon`)
876876
* Class load information (`classes`, `classes.loaded`, `classes.unloaded`)
877877
* Garbage collection information (`gc.xxx.count`, `gc.xxx.time`)
878878

0 commit comments

Comments
 (0)