Fix Javadoc typo in ConfigurableWebEnvironment

master
Sam Brannen 12 years ago
parent 08498d57dd
commit e3d8ab2088
  1. 4
      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 * Specialization of {@link ConfigurableEnvironment} allowing initialization of
* servlet-related {@link org.springframework.core.env.PropertySource} objects at the * 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. * become available.
* *
* @author Chris Beams * @author Chris Beams
@ -39,7 +39,7 @@ public interface ConfigurableWebEnvironment extends ConfigurableEnvironment {
* instances acting as placeholders with real servlet context/config property sources * instances acting as placeholders with real servlet context/config property sources
* using the given parameters. * using the given parameters.
* @param servletContext the {@link ServletContext} (may not be {@code null}) * @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); void initPropertySources(ServletContext servletContext, ServletConfig servletConfig);

Loading…
Cancel
Save