Fix example code in query methods details doc.

Original pull request: #3224

Signed-off-by: KIMSIWOO <sa20207@naver.com>
This commit is contained in:
KIMSIWOO
2024-12-29 13:00:28 +09:00
committed by Chris Bono
parent ceae0dd234
commit c0b60b2906

View File

@@ -533,7 +533,7 @@ The following example shows how to limit the query size:
.Limiting the result size of a query with `Top` and `First`
[source,java]
----
List<User> findByLastname(Limit limit);
List<User> findByLastname(String lastname, Limit limit);
User findFirstByOrderByLastnameAsc();