diff --git a/spring-context/src/main/java/org/springframework/context/annotation/ConfigurationClassUtils.java b/spring-context/src/main/java/org/springframework/context/annotation/ConfigurationClassUtils.java index 4b7ea48fdd..7bd2d37919 100644 --- a/spring-context/src/main/java/org/springframework/context/annotation/ConfigurationClassUtils.java +++ b/spring-context/src/main/java/org/springframework/context/annotation/ConfigurationClassUtils.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2013 the original author or authors. + * Copyright 2002-2014 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -119,7 +119,7 @@ abstract class ConfigurationClassUtils { /** * Check the given metadata for a lite configuration class candidate - * (i.e. a class annotated with {@code @Component} or just having + * (e.g. a class annotated with {@code @Component} or just having * {@code @Import} declarations or {@code @Bean methods}). * @param metadata the metadata of the annotated class * @return {@code true} if the given class is to be processed as a lite diff --git a/spring-web/src/main/java/org/springframework/web/context/request/ServletWebRequest.java b/spring-web/src/main/java/org/springframework/web/context/request/ServletWebRequest.java index d41b258b80..8c72e75507 100644 --- a/spring-web/src/main/java/org/springframework/web/context/request/ServletWebRequest.java +++ b/spring-web/src/main/java/org/springframework/web/context/request/ServletWebRequest.java @@ -77,7 +77,7 @@ public class ServletWebRequest extends ServletRequestAttributes implements Nativ /** - * Exposes the native {@link HttpServletRequest} that we're wrapping (if any). + * Exposes the native {@link HttpServletResponse} that we're wrapping (if any). */ public final HttpServletResponse getResponse() { return this.response;