From 950bcf04d8769748d78cdc2bb41fa91bb0dc7ed9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kov=C3=A1cs=2C=20P=C3=A9ter?= Date: Tue, 3 Dec 2019 17:14:37 +0100 Subject: [PATCH] #547 - Fixes Javadoc typo. Original pull request: #547. --- .../example/springdata/jpa/simple/SimpleUserRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jpa/example/src/main/java/example/springdata/jpa/simple/SimpleUserRepository.java b/jpa/example/src/main/java/example/springdata/jpa/simple/SimpleUserRepository.java index d9a00bc7..0b806e38 100644 --- a/jpa/example/src/main/java/example/springdata/jpa/simple/SimpleUserRepository.java +++ b/jpa/example/src/main/java/example/springdata/jpa/simple/SimpleUserRepository.java @@ -38,7 +38,7 @@ public interface SimpleUserRepository extends CrudRepository { * Find the user with the given username. This method will be translated into a query using the * {@link javax.persistence.NamedQuery} annotation at the {@link User} class. * - * @param lastname + * @param username * @return */ User findByTheUsersName(String username);