From 6146817ba380dcf321cec61bfb7fe2d6464a1838 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Wed, 18 Nov 2015 12:36:41 +0000 Subject: [PATCH] Polish --- spring-boot-docs/src/main/asciidoc/howto.adoc | 2 +- spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-docs/src/main/asciidoc/howto.adoc index 279c0d5a0b..45d47f002c 100644 --- a/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -2018,7 +2018,7 @@ To configure IntelliJ IDEA correctly you can use the `idea` Gradle plugin: NOTE: IntelliJ IDEA must be configured to use the same Java version as the command line Gradle task and `springloaded` *must* be included as a `buildscript` dependency. -You can also additionally enable '`Make Project Automatically`' inside Intellij IDEA to +You can also additionally enable '`Make Project Automatically`' inside IntelliJ IDEA to automatically compile your code whenever a file is saved. diff --git a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc index 9f0ffbde45..3db616077f 100644 --- a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc +++ b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc @@ -947,9 +947,9 @@ points to a folder will be monitored for changes. **** As DevTools _only_ monitors classpath resources, the only way to trigger a change is to update the classpath. On Eclipse, saving is actually updating the project, compiling or -copying resources for you as part of the save action. If you are using Intellij IDEA, +copying resources for you as part of the save action. If you are using IntelliJ IDEA, there is no such thing as a save action since the resources are saved automatically. -Intellij IDEA users should use the `Build` -> `Make Project` action to achieve the same +IntelliJ IDEA users should use the `Build` -> `Make Project` action to achieve the same result. ****