Fix typos

This commit is contained in:
Eddú Meléndez 2015-06-04 17:19:05 -05:00 committed by Stephane Nicoll
parent cc169c5009
commit baca62a6c0
13 changed files with 15 additions and 15 deletions

View File

@ -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<String, HttpStatus> statusMapping) {

View File

@ -45,7 +45,7 @@ public class HealthEndpointTests extends AbstractEndpointTests<HealthEndpoint> {
@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));
}

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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
*/

View File

@ -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) {

View File

@ -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

View File

@ -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 {

View File

@ -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() {

View File

@ -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();
}

View File

@ -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:";

View File

@ -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);