From e3d8ab20883f127c0b73ab95c8794ce503a4ee42 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 19 Jun 2012 19:34:38 +0200 Subject: [PATCH] Fix Javadoc typo in ConfigurableWebEnvironment --- .../web/context/ConfigurableWebEnvironment.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-web/src/main/java/org/springframework/web/context/ConfigurableWebEnvironment.java b/spring-web/src/main/java/org/springframework/web/context/ConfigurableWebEnvironment.java index 350d981330..8d5758cfcd 100644 --- a/spring-web/src/main/java/org/springframework/web/context/ConfigurableWebEnvironment.java +++ b/spring-web/src/main/java/org/springframework/web/context/ConfigurableWebEnvironment.java @@ -24,7 +24,7 @@ import org.springframework.core.env.ConfigurableEnvironment; /** * Specialization of {@link ConfigurableEnvironment} allowing initialization of * servlet-related {@link org.springframework.core.env.PropertySource} objects at the - * earliest moment the {@link ServletContext} and (optionally) {@link ServletConfig} + * earliest moment that the {@link ServletContext} and (optionally) {@link ServletConfig} * become available. * * @author Chris Beams @@ -39,7 +39,7 @@ public interface ConfigurableWebEnvironment extends ConfigurableEnvironment { * instances acting as placeholders with real servlet context/config property sources * using the given parameters. * @param servletContext the {@link ServletContext} (may not be {@code null}) - * @param servletConfig the {@link ServletContext} ({@code null} if not available) + * @param servletConfig the {@link ServletConfig} ({@code null} if not available) */ void initPropertySources(ServletContext servletContext, ServletConfig servletConfig);