diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/EndpointAutoConfiguration.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/EndpointAutoConfiguration.java index 5184cae8ab3..308462d400b 100644 --- a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/EndpointAutoConfiguration.java +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/EndpointAutoConfiguration.java @@ -145,7 +145,7 @@ public class EndpointAutoConfiguration { @Bean @ConditionalOnBean(ConditionEvaluationReport.class) @ConditionalOnMissingBean(search = SearchStrategy.CURRENT) - public AutoConfigurationReportEndpoint autoConfigurationAuditEndpoint() { + public AutoConfigurationReportEndpoint autoConfigurationReportEndpoint() { return new AutoConfigurationReportEndpoint(); } diff --git a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/classpath/ClassPathFileSystemWatcher.java b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/classpath/ClassPathFileSystemWatcher.java index 4b7185f2ef9..db6d44fd1f8 100644 --- a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/classpath/ClassPathFileSystemWatcher.java +++ b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/classpath/ClassPathFileSystemWatcher.java @@ -48,8 +48,8 @@ public class ClassPathFileSystemWatcher implements InitializingBean, DisposableB /** * Create a new {@link ClassPathFileSystemWatcher} instance. - * @param fileSystemWatcherFactory the underlying {@link FileSystemWatcher} used to - * monitor the local file system + * @param fileSystemWatcherFactory a factory to create + * the underlying {@link FileSystemWatcher} used to monitor the local file system * @param restartStrategy the classpath restart strategy * @param urls the URLs to watch */ diff --git a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/filewatch/FileSystemWatcher.java b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/filewatch/FileSystemWatcher.java index 140e9e67735..cbafbdbf389 100644 --- a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/filewatch/FileSystemWatcher.java +++ b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/filewatch/FileSystemWatcher.java @@ -96,7 +96,7 @@ public class FileSystemWatcher { } /** - * Add a source folders to monitor. Cannot be called after the watcher has been + * Add source folders to monitor. Cannot be called after the watcher has been * {@link #start() started}. * @param folders the folders to monitor */ diff --git a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/filewatch/FolderSnapshot.java b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/filewatch/FolderSnapshot.java index e672759394e..41d09b2da8a 100644 --- a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/filewatch/FolderSnapshot.java +++ b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/filewatch/FolderSnapshot.java @@ -166,7 +166,7 @@ class FolderSnapshot { @Override public String toString() { - return this.folder + " snaphost at " + this.time; + return this.folder + " snapshot at " + this.time; } } diff --git a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/Restarter.java b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/Restarter.java index becf57a8004..043da7111dd 100644 --- a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/Restarter.java +++ b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/Restarter.java @@ -233,7 +233,7 @@ public class Restarter { /** * Restart the running application. - * @param failureHandler a failure handler to deal with application that don't start + * @param failureHandler a failure handler to deal with application that doesn't start */ public void restart(final FailureHandler failureHandler) { if (!this.enabled) { @@ -255,7 +255,7 @@ public class Restarter { /** * Start the application. - * @param failureHandler a failure handler for application that wont start + * @param failureHandler a failure handler for application that won't start * @throws Exception */ protected void start(FailureHandler failureHandler) throws Exception { diff --git a/spring-boot/src/main/java/org/springframework/boot/ansi/AnsiOutput.java b/spring-boot/src/main/java/org/springframework/boot/ansi/AnsiOutput.java index e46313022b4..fdbab1b80ad 100644 --- a/spring-boot/src/main/java/org/springframework/boot/ansi/AnsiOutput.java +++ b/spring-boot/src/main/java/org/springframework/boot/ansi/AnsiOutput.java @@ -51,7 +51,7 @@ public abstract class AnsiOutput { } /** - * Sets if the System.console() is know to be available. + * Sets if the System.console() is known to be available. * @param consoleAvailable if the console is known to be available or {@code null} to * use standard detection logic. */