diff --git a/api/src/main/java/jakarta/data/repository/CrudRepository.java b/api/src/main/java/jakarta/data/repository/CrudRepository.java index 7209265d9..cffdac42f 100644 --- a/api/src/main/java/jakarta/data/repository/CrudRepository.java +++ b/api/src/main/java/jakarta/data/repository/CrudRepository.java @@ -59,7 +59,7 @@ public interface CrudRepository extends BasicRepository { * unique identifier as any of the given entities already exists in the database and the database * supports ACID transactions, then this method raises {@link EntityExistsException}. * In databases that follow the BASE model or use an append model to write data, this exception - * may not be thrown.

+ * is not thrown.

* *

The entities within the returned iterable may be the same instances as those supplied * as parameters, especially in non-Java record classes. However, for Jakarta Data providers