Fix typos

See gh-2019
This commit is contained in:
Hanope
2018-11-19 12:43:58 +09:00
committed by Stephane Nicoll
parent 729ce4108d
commit bfb49c7249
76 changed files with 137 additions and 137 deletions

View File

@@ -26,7 +26,7 @@ public class LifecycleContextBean extends LifecycleBean implements ApplicationCo
public void afterPropertiesSet() {
super.afterPropertiesSet();
if (this.owningContext == null)
throw new RuntimeException("Factory didn't call setAppliationContext before afterPropertiesSet on lifecycle bean");
throw new RuntimeException("Factory didn't call setApplicationContext before afterPropertiesSet on lifecycle bean");
}
@Override

View File

@@ -195,7 +195,7 @@ public class ProducesRequestConditionTests {
}
@Test
public void compareToMultipleExpressionsAndMultipeAcceptHeaderValues() {
public void compareToMultipleExpressionsAndMultipleAcceptHeaderValues() {
ProducesRequestCondition condition1 = new ProducesRequestCondition("text/*", "text/plain");
ProducesRequestCondition condition2 = new ProducesRequestCondition("application/*", "application/xml");

View File

@@ -193,9 +193,9 @@ public class ReactiveTypeHandlerTests {
testSseResponse(false);
}
private void testSseResponse(boolean expectSseEimtter) throws Exception {
private void testSseResponse(boolean expectSseEmitter) throws Exception {
ResponseBodyEmitter emitter = handleValue(Flux.empty(), Flux.class, forClass(String.class));
assertEquals(expectSseEimtter, emitter instanceof SseEmitter);
assertEquals(expectSseEmitter, emitter instanceof SseEmitter);
resetRequest();
}

View File

@@ -919,7 +919,7 @@ public class BindTagTests extends AbstractTagTests {
transform.setParent(message);
try {
transform.doStartTag();
fail("Tag can be executed outside BindTag and inside messagtag");
fail("Tag can be executed outside BindTag and inside messagetag");
}
catch (JspException e) {
// this is ok!

View File

@@ -270,7 +270,7 @@ public class BaseViewTests {
}
@Test
public void attributeCSVParsingIgoresTrailingComma() {
public void attributeCSVParsingIgnoresTrailingComma() {
AbstractView v = new ConcreteView();
v.setAttributesCSV("foo=[de],");
assertEquals(1, v.getStaticAttributes().size());