Skip to content

Commit 32be819

Browse files
committed
#384 - Polishing.
Fix typo in exception message.
1 parent cf2fee7 commit 32be819

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/springframework/data/r2dbc/repository/query/R2dbcQueryMethod.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public R2dbcQueryMethod(Method method, RepositoryMetadata metadata, ProjectionFa
107107

108108
if (hasParameterOfType(method, Sort.class)) {
109109
throw new IllegalStateException(String.format("Method must not have Pageable *and* Sort parameter. "
110-
+ "Use sorting capabilities on Pageble instead! Offending method: %s", method.toString()));
110+
+ "Use sorting capabilities on Pageable instead! Offending method: %s", method.toString()));
111111
}
112112
}
113113

0 commit comments

Comments
 (0)