From baca62a6c04f030e6eacb241d238c26396b6b465 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez?= Date: Thu, 4 Jun 2015 17:19:05 -0500 Subject: [PATCH] Fix typos --- .../boot/actuate/endpoint/mvc/HealthMvcEndpoint.java | 2 +- .../boot/actuate/endpoint/HealthEndpointTests.java | 2 +- .../mustache/MustacheResourceTemplateLoader.java | 2 +- .../autoconfigure/mail/MailSenderAutoConfigurationTests.java | 2 +- .../autoconfigure/web/MultipartAutoConfigurationTests.java | 2 +- .../boot/cli/command/NoArgumentsException.java | 2 +- .../remote/client/LocalDebugPortAvailableCondition.java | 4 ++-- .../springframework/boot/devtools/restart/RestartScope.java | 2 +- .../org/springframework/boot/devtools/restart/Restarter.java | 2 +- .../remote/client/LocalDebugPortAvailableConditionTests.java | 4 ++-- .../main/java/sample/jersey1/SampleJersey1Application.java | 2 +- .../java/org/springframework/boot/loader/jar/Handler.java | 2 +- .../boot/loader/data/RandomAccessDataFileTests.java | 2 +- 13 files changed, 15 insertions(+), 15 deletions(-) diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/mvc/HealthMvcEndpoint.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/mvc/HealthMvcEndpoint.java index 6f3de12c1f..dad7422958 100644 --- a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/mvc/HealthMvcEndpoint.java +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/mvc/HealthMvcEndpoint.java @@ -89,7 +89,7 @@ public class HealthMvcEndpoint implements MvcEndpoint, EnvironmentAware { } /** - * Add specfic status mappings to the existing set. + * Add specific status mappings to the existing set. * @param statusMapping a map of status code to {@link HttpStatus} */ public void addStatusMapping(Map statusMapping) { diff --git a/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/HealthEndpointTests.java b/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/HealthEndpointTests.java index eb4e8225ab..4863aebb85 100644 --- a/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/HealthEndpointTests.java +++ b/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/HealthEndpointTests.java @@ -45,7 +45,7 @@ public class HealthEndpointTests extends AbstractEndpointTests { @Test public void invoke() throws Exception { - // As FINE isn't configured in the order we get UNKOWN + // As FINE isn't configured in the order we get UNKNOWN assertThat(getEndpointBean().invoke().getStatus(), equalTo(Status.UNKNOWN)); } diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheResourceTemplateLoader.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheResourceTemplateLoader.java index abab377371..e20a298620 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheResourceTemplateLoader.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheResourceTemplateLoader.java @@ -31,7 +31,7 @@ import com.samskivert.mustache.Mustache.TemplateLoader; * Mustache TemplateLoader implementation that uses a prefix, suffix and the Spring * Resource abstraction to load a template from a file, classpath, URL etc. A * TemplateLoader is needed in the Compiler when you want to render partials (i.e. - * tiles-like fetaures). + * tiles-like features). * * @author Dave Syer * @since 1.2.2 diff --git a/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/mail/MailSenderAutoConfigurationTests.java b/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/mail/MailSenderAutoConfigurationTests.java index 1cb1eec2f2..f9539cf615 100644 --- a/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/mail/MailSenderAutoConfigurationTests.java +++ b/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/mail/MailSenderAutoConfigurationTests.java @@ -113,7 +113,7 @@ public class MailSenderAutoConfigurationTests { } @Test - public void smptHostWithJavaMailProperties() { + public void smtpHostWithJavaMailProperties() { load(EmptyConfig.class, "spring.mail.host:localhost", "spring.mail.properties.mail.smtp.auth:true"); JavaMailSenderImpl bean = (JavaMailSenderImpl) this.context diff --git a/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/MultipartAutoConfigurationTests.java b/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/MultipartAutoConfigurationTests.java index 0c93d3796a..307dde8ed9 100644 --- a/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/MultipartAutoConfigurationTests.java +++ b/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/MultipartAutoConfigurationTests.java @@ -215,7 +215,7 @@ public class MultipartAutoConfigurationTests { } @Test - public void containerWithCustomMulipartResolver() throws Exception { + public void containerWithCustomMultipartResolver() throws Exception { this.context = new AnnotationConfigEmbeddedWebApplicationContext( ContainerWithCustomMultipartResolver.class, BaseConfiguration.class); MultipartResolver multipartResolver = this.context diff --git a/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/NoArgumentsException.java b/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/NoArgumentsException.java index 8ea3ae59a6..d8731159c2 100644 --- a/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/NoArgumentsException.java +++ b/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/NoArgumentsException.java @@ -17,7 +17,7 @@ package org.springframework.boot.cli.command; /** - * Exception used to indicate that no arguemnts were specified. + * Exception used to indicate that no arguments were specified. * * @author Phillip Webb */ diff --git a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/remote/client/LocalDebugPortAvailableCondition.java b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/remote/client/LocalDebugPortAvailableCondition.java index b7ea788879..fd8cdae456 100644 --- a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/remote/client/LocalDebugPortAvailableCondition.java +++ b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/remote/client/LocalDebugPortAvailableCondition.java @@ -40,9 +40,9 @@ class LocalDebugPortAvailableCondition extends SpringBootCondition { port = RemoteDevToolsProperties.Debug.DEFAULT_LOCAL_PORT; } if (isPortAvailable(port)) { - return ConditionOutcome.match("Local debug port availble"); + return ConditionOutcome.match("Local debug port available"); } - return ConditionOutcome.noMatch("Local debug port unavailble"); + return ConditionOutcome.noMatch("Local debug port unavailable"); } private boolean isPortAvailable(int port) { diff --git a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/RestartScope.java b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/RestartScope.java index 46e395beb0..8e08cf734f 100644 --- a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/RestartScope.java +++ b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/RestartScope.java @@ -25,7 +25,7 @@ import java.lang.annotation.Target; import org.springframework.context.annotation.Scope; /** - * Restart {@code @Scope} Annotation used to indicate that a bean shoul remain beteen + * Restart {@code @Scope} Annotation used to indicate that a bean should remain between * restarts. * * @author Phillip Webb 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 5e19cebbdb..d5829785e3 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 @@ -545,7 +545,7 @@ public class Restarter { } /** - * {@link ThreadFactory} that creates a leak safe thead. + * {@link ThreadFactory} that creates a leak safe thread. */ private class LeakSafeThreadFactory implements ThreadFactory { diff --git a/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/remote/client/LocalDebugPortAvailableConditionTests.java b/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/remote/client/LocalDebugPortAvailableConditionTests.java index 147cbb0db7..52b7b9590e 100644 --- a/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/remote/client/LocalDebugPortAvailableConditionTests.java +++ b/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/remote/client/LocalDebugPortAvailableConditionTests.java @@ -47,7 +47,7 @@ public class LocalDebugPortAvailableConditionTests { public void portAvailable() throws Exception { ConditionOutcome outcome = getOutcome(); assertThat(outcome.isMatch(), equalTo(true)); - assertThat(outcome.getMessage(), equalTo("Local debug port availble")); + assertThat(outcome.getMessage(), equalTo("Local debug port available")); } @Test @@ -57,7 +57,7 @@ public class LocalDebugPortAvailableConditionTests { ConditionOutcome outcome = getOutcome(); serverSocket.close(); assertThat(outcome.isMatch(), equalTo(false)); - assertThat(outcome.getMessage(), equalTo("Local debug port unavailble")); + assertThat(outcome.getMessage(), equalTo("Local debug port unavailable")); } private ConditionOutcome getOutcome() { diff --git a/spring-boot-samples/spring-boot-sample-jersey1/src/main/java/sample/jersey1/SampleJersey1Application.java b/spring-boot-samples/spring-boot-sample-jersey1/src/main/java/sample/jersey1/SampleJersey1Application.java index 0e7565dc43..7689917d17 100644 --- a/spring-boot-samples/spring-boot-sample-jersey1/src/main/java/sample/jersey1/SampleJersey1Application.java +++ b/spring-boot-samples/spring-boot-sample-jersey1/src/main/java/sample/jersey1/SampleJersey1Application.java @@ -39,7 +39,7 @@ public class SampleJersey1Application { } @Bean - // Not needed if Spring Web MVC is also present on claspath + // Not needed if Spring Web MVC is also present on classpath public TomcatEmbeddedServletContainerFactory tomcatEmbeddedServletContainerFactory() { return new TomcatEmbeddedServletContainerFactory(); } diff --git a/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/Handler.java b/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/Handler.java index 4cfcd52dd8..35adf1e67e 100644 --- a/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/Handler.java +++ b/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/Handler.java @@ -38,7 +38,7 @@ import java.util.logging.Logger; */ public class Handler extends URLStreamHandler { - // NOTE: in order to be found as a URL protocol hander, this class must be public, + // NOTE: in order to be found as a URL protocol handler, this class must be public, // must be named Handler and must be in a package ending '.jar' private static final String FILE_PROTOCOL = "file:"; diff --git a/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/data/RandomAccessDataFileTests.java b/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/data/RandomAccessDataFileTests.java index 8b13a2ad51..b83d5cdf95 100644 --- a/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/data/RandomAccessDataFileTests.java +++ b/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/data/RandomAccessDataFileTests.java @@ -128,7 +128,7 @@ public class RandomAccessDataFileTests { } @Test - public void intputStreamReadNullBytesWithOffset() throws Exception { + public void inputStreamReadNullBytesWithOffset() throws Exception { this.thrown.expect(NullPointerException.class); this.thrown.expectMessage("Bytes must not be null"); this.inputStream.read(null, 0, 1);