From b26f09f3b45a5882ee87924ab803aac60c34644a Mon Sep 17 00:00:00 2001 From: Oliver Gierke Date: Wed, 27 Feb 2013 14:46:17 +0100 Subject: [PATCH] DATACMNS-291 - Fixed typo in JavaDoc of CrudRepository. --- .../org/springframework/data/repository/CrudRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/repository/CrudRepository.java b/src/main/java/org/springframework/data/repository/CrudRepository.java index 80d31f952..55c898774 100644 --- a/src/main/java/org/springframework/data/repository/CrudRepository.java +++ b/src/main/java/org/springframework/data/repository/CrudRepository.java @@ -45,7 +45,7 @@ public interface CrudRepository extends Repository Iterable save(Iterable entities); /** - * Retrives an entity by its id. + * Retrieves an entity by its id. * * @param id must not be {@literal null}. * @return the entity with the given id or {@literal null} if none found