From 352ed517c5fd74f3549a36050c325b8a3fc00f28 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Fri, 9 Mar 2012 10:50:44 +0200 Subject: [PATCH] Fix typo in @ComponentScan Javadoc With thanks to @abdull for pull request #55 --- .../org/springframework/context/annotation/ComponentScan.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-context/src/main/java/org/springframework/context/annotation/ComponentScan.java b/spring-context/src/main/java/org/springframework/context/annotation/ComponentScan.java index f0826a62eb..26a3a6cec9 100644 --- a/spring-context/src/main/java/org/springframework/context/annotation/ComponentScan.java +++ b/spring-context/src/main/java/org/springframework/context/annotation/ComponentScan.java @@ -132,7 +132,7 @@ public @interface ComponentScan { /** * Declares the type filter to be used as an {@linkplain ComponentScan#includeFilters() - * include filter} or {@linkplain ComponentScan#includeFilters() exclude filter}. + * include filter} or {@linkplain ComponentScan#excludeFilters() exclude filter}. */ @Retention(RetentionPolicy.RUNTIME) @Target({})