From c399cb1b2721915a440dff50232c0d114c9dbaf2 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 19 Oct 2009 18:23:51 +0000 Subject: [PATCH] fixed typos --- .../web/bind/annotation/RequestParam.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/org.springframework.web/src/main/java/org/springframework/web/bind/annotation/RequestParam.java b/org.springframework.web/src/main/java/org/springframework/web/bind/annotation/RequestParam.java index acfb193952..33b1ed55f6 100644 --- a/org.springframework.web/src/main/java/org/springframework/web/bind/annotation/RequestParam.java +++ b/org.springframework.web/src/main/java/org/springframework/web/bind/annotation/RequestParam.java @@ -23,9 +23,10 @@ import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** - * Annotation which indicates that a method parameter should be bound to a web request parameter. - * Supported for annotated handler methods in Servlet and Portlet environments. - * + * Annotation which indicates that a method parameter should be bound to a web + * request parameter. Supported for annotated handler methods in Servlet and + * Portlet environments. + * * @author Arjen Poutsma * @author Juergen Hoeller * @since 2.5 @@ -51,12 +52,12 @@ public @interface RequestParam { * of the parameter missing in the request. Switch this to false * if you prefer a null in case of the parameter missing. *

Alternatively, provide a {@link #defaultValue() defaultValue}, - * which implicitely sets this flag to false. + * which implicitly sets this flag to false. */ boolean required() default true; /** - * The default value to use as a fallback. Supplying a default value implicitely + * The default value to use as a fallback. Supplying a default value implicitly * sets {@link #required()} to false. */ String defaultValue() default "";