From c024008bc093341e2269c9c7255e68cb68ac3f50 Mon Sep 17 00:00:00 2001 From: clebert suconic Date: Tue, 2 Sep 2014 10:27:39 -0400 Subject: [PATCH] 2. There is a minor typo in Check JavaDoc: also improving it a bit --- .../annotation/RequiredParameterForAnnotationCheck.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sevntu-checks/src/main/java/com/github/sevntu/checkstyle/checks/annotation/RequiredParameterForAnnotationCheck.java b/sevntu-checks/src/main/java/com/github/sevntu/checkstyle/checks/annotation/RequiredParameterForAnnotationCheck.java index c1cf47eb3b..f65fe9eb28 100644 --- a/sevntu-checks/src/main/java/com/github/sevntu/checkstyle/checks/annotation/RequiredParameterForAnnotationCheck.java +++ b/sevntu-checks/src/main/java/com/github/sevntu/checkstyle/checks/annotation/RequiredParameterForAnnotationCheck.java @@ -27,11 +27,12 @@ import java.util.Set; /** - * Marks a given parameter as required for a give annotation. This only certify + *

Marks a given parameter as required for a given annotation. This only certify * the minimal parameters that need to be used on the annotation. For example if * you enforce the parameter "description" on @EJB, you are still free to use - * beanName if you like Say you want to ensure that the parameter name should be - * mandatory on a given annotation. + * beanName if you like.

+ *

Say you want to ensure that the parameter name should be + * mandatory on a given annotation.

*

* *