From 14a2a4b2783edae5363b39c2c96123522c22dacc Mon Sep 17 00:00:00 2001 From: jinwook han Date: Sun, 10 May 2020 20:37:58 +0900 Subject: [PATCH] DATAJPA-1724 - Remove superfluous parenthesis from Javadoc. Original pull request: #422. --- .../java/org/springframework/data/jpa/repository/Modifying.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/jpa/repository/Modifying.java b/src/main/java/org/springframework/data/jpa/repository/Modifying.java index 6f1dd0cdb..3eb4e62f2 100644 --- a/src/main/java/org/springframework/data/jpa/repository/Modifying.java +++ b/src/main/java/org/springframework/data/jpa/repository/Modifying.java @@ -24,7 +24,7 @@ import java.lang.annotation.Target; /** *

* Indicates a query method should be considered as modifying query as that changes the way it needs to be executed. - * This annotation is only considered if used on query methods defined through a {@link Query} annotation). It's not + * This annotation is only considered if used on query methods defined through a {@link Query} annotation. It's not * applied on custom implementation methods or queries derived from the method name as they already have control over * the underlying data access APIs or specify if they are modifying by their name. *