From 47daf96c485b9bbf2d84ec3d15777da527772a91 Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Tue, 16 Oct 2018 07:15:08 +0900 Subject: [PATCH] Polish See gh-14843 --- .../autoconfigure/quartz/SchedulerFactoryBeanCustomizer.java | 2 +- .../src/main/asciidoc/spring-boot-features.adoc | 2 +- ...vcTestServletFilterRegistrationDisabledIntegrationTests.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/quartz/SchedulerFactoryBeanCustomizer.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/quartz/SchedulerFactoryBeanCustomizer.java index 8a1d488f776..331b2e39524 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/quartz/SchedulerFactoryBeanCustomizer.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/quartz/SchedulerFactoryBeanCustomizer.java @@ -26,7 +26,7 @@ import org.springframework.scheduling.quartz.SchedulerFactoryBean; * configuration. *

* For customization of the {@link DataSource} used by Quartz, use of - * {@link QuartzDataSource @QuartDataSource} is preferred. It will ensure consistent + * {@link QuartzDataSource @QuartzDataSource} is preferred. It will ensure consistent * customization of both the {@link SchedulerFactoryBean} and the * {@link QuartzDataSourceInitializer}. * diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 46fc4bebc5a..1ca1781d8d1 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -1905,7 +1905,7 @@ Jackson is the preferred and default library. [[boot-features-json-jackson]] === Jackson Auto-configuration for Jackson is provided and Jackson is part of -`spring-boot-starer-json`. When Jackson is on the classpath an `ObjectMapper` +`spring-boot-starter-json`. When Jackson is on the classpath an `ObjectMapper` bean is automatically configured. Several configuration properties are provided for <>. diff --git a/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/web/servlet/mockmvc/WebMvcTestServletFilterRegistrationDisabledIntegrationTests.java b/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/web/servlet/mockmvc/WebMvcTestServletFilterRegistrationDisabledIntegrationTests.java index 10fbc099eef..44c0ecba6f3 100644 --- a/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/web/servlet/mockmvc/WebMvcTestServletFilterRegistrationDisabledIntegrationTests.java +++ b/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/web/servlet/mockmvc/WebMvcTestServletFilterRegistrationDisabledIntegrationTests.java @@ -43,7 +43,7 @@ public class WebMvcTestServletFilterRegistrationDisabledIntegrationTests { private MockMvc mvc; @Test - public void shouldApplyFilter() throws Exception { + public void shouldNotApplyFilter() throws Exception { this.mvc.perform(get("/one")).andExpect(header().string("x-test", (String) null)); }