Skip to content

Commit dfbabef

Browse files
committed
Merge pull request spring-projects#3411 from izeye/typo
* pr/3411: Fix typo
2 parents 6aefd20 + b4f636b commit dfbabef

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/EndpointAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public DumpEndpoint dumpEndpoint() {
145145
@Bean
146146
@ConditionalOnBean(ConditionEvaluationReport.class)
147147
@ConditionalOnMissingBean(search = SearchStrategy.CURRENT)
148-
public AutoConfigurationReportEndpoint autoConfigurationAuditEndpoint() {
148+
public AutoConfigurationReportEndpoint autoConfigurationReportEndpoint() {
149149
return new AutoConfigurationReportEndpoint();
150150
}
151151

spring-boot-devtools/src/main/java/org/springframework/boot/devtools/classpath/ClassPathFileSystemWatcher.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ public class ClassPathFileSystemWatcher implements InitializingBean, DisposableB
4848

4949
/**
5050
* Create a new {@link ClassPathFileSystemWatcher} instance.
51-
* @param fileSystemWatcherFactory the underlying {@link FileSystemWatcher} used to
52-
* monitor the local file system
51+
* @param fileSystemWatcherFactory a factory to create
52+
* the underlying {@link FileSystemWatcher} used to monitor the local file system
5353
* @param restartStrategy the classpath restart strategy
5454
* @param urls the URLs to watch
5555
*/

spring-boot-devtools/src/main/java/org/springframework/boot/devtools/filewatch/FileSystemWatcher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public synchronized void addListener(FileChangeListener fileChangeListener) {
9696
}
9797

9898
/**
99-
* Add a source folders to monitor. Cannot be called after the watcher has been
99+
* Add source folders to monitor. Cannot be called after the watcher has been
100100
* {@link #start() started}.
101101
* @param folders the folders to monitor
102102
*/

spring-boot-devtools/src/main/java/org/springframework/boot/devtools/filewatch/FolderSnapshot.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public File getFolder() {
166166

167167
@Override
168168
public String toString() {
169-
return this.folder + " snaphost at " + this.time;
169+
return this.folder + " snapshot at " + this.time;
170170
}
171171

172172
}

spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/Restarter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ public void restart() {
233233

234234
/**
235235
* Restart the running application.
236-
* @param failureHandler a failure handler to deal with application that don't start
236+
* @param failureHandler a failure handler to deal with application that doesn't start
237237
*/
238238
public void restart(final FailureHandler failureHandler) {
239239
if (!this.enabled) {
@@ -255,7 +255,7 @@ public Void call() throws Exception {
255255

256256
/**
257257
* Start the application.
258-
* @param failureHandler a failure handler for application that wont start
258+
* @param failureHandler a failure handler for application that won't start
259259
* @throws Exception
260260
*/
261261
protected void start(FailureHandler failureHandler) throws Exception {

spring-boot/src/main/java/org/springframework/boot/ansi/AnsiOutput.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static void setEnabled(Enabled enabled) {
5151
}
5252

5353
/**
54-
* Sets if the System.console() is know to be available.
54+
* Sets if the System.console() is known to be available.
5555
* @param consoleAvailable if the console is known to be available or {@code null} to
5656
* use standard detection logic.
5757
*/

0 commit comments

Comments
 (0)