From bd106a95b093e31b51651fb35cb9b2fcffc0b839 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Tue, 9 Jun 2020 11:27:08 +0200 Subject: [PATCH] #384 - Polishing. Fix typo in exception message. --- .../data/r2dbc/repository/query/R2dbcQueryMethod.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/r2dbc/repository/query/R2dbcQueryMethod.java b/src/main/java/org/springframework/data/r2dbc/repository/query/R2dbcQueryMethod.java index 931e8c43..0842c3bc 100644 --- a/src/main/java/org/springframework/data/r2dbc/repository/query/R2dbcQueryMethod.java +++ b/src/main/java/org/springframework/data/r2dbc/repository/query/R2dbcQueryMethod.java @@ -107,7 +107,7 @@ public class R2dbcQueryMethod extends QueryMethod { if (hasParameterOfType(method, Sort.class)) { throw new IllegalStateException(String.format("Method must not have Pageable *and* Sort parameter. " - + "Use sorting capabilities on Pageble instead! Offending method: %s", method.toString())); + + "Use sorting capabilities on Pageable instead! Offending method: %s", method.toString())); } }