Skip to content

Commit 5862ba5

Browse files
Dobiasdmp911de
authored andcommitted
DATACMNS-1392 - Fix typo in Parameters.getParameter(…) exception message.
Original pull request: #311.
1 parent 1ec79d7 commit 5862ba5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/springframework/data/repository/query/Parameters.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ public T getParameter(int index) {
217217
return parameters.get(index);
218218
} catch (IndexOutOfBoundsException e) {
219219
throw new ParameterOutOfBoundsException(
220-
"Invalid parameter index! You seem to have declare too little query method parameters!", e);
220+
"Invalid parameter index! You seem to have declared too little query method parameters!", e);
221221
}
222222
}
223223

0 commit comments

Comments
 (0)