@@ -48,7 +48,7 @@ public interface DataAccessStrategy extends RelationResolver {
48
48
* @param instance the instance to be stored. Must not be {@code null}.
49
49
* @param domainType the type of the instance. Must not be {@code null}.
50
50
* @param identifier information about data that needs to be considered for the insert but which is not part of the
51
- * entity. Namely references back to a parent entity and key/index columns for entities that are stored in a
51
+ * entity. Namely, references back to a parent entity and key/index columns for entities that are stored in a
52
52
* {@link Map} or {@link List}.
53
53
* @return the id generated by the database if any.
54
54
* @since 1.1
@@ -66,7 +66,7 @@ public interface DataAccessStrategy extends RelationResolver {
66
66
* @param instance the instance to be stored. Must not be {@code null}.
67
67
* @param domainType the type of the instance. Must not be {@code null}.
68
68
* @param identifier information about data that needs to be considered for the insert but which is not part of the
69
- * entity. Namely references back to a parent entity and key/index columns for entities that are stored in a
69
+ * entity. Namely, references back to a parent entity and key/index columns for entities that are stored in a
70
70
* {@link Map} or {@link List}.
71
71
* @param idValueSource the {@link IdValueSource} for the insert.
72
72
* @return the id generated by the database if any.
@@ -111,7 +111,7 @@ public interface DataAccessStrategy extends RelationResolver {
111
111
* @param previousVersion The previous version assigned to the instance being saved.
112
112
* @param <T> the type of the instance to save.
113
113
* @return whether the update actually updated a row.
114
- * @throws OptimisticLockingFailureException if the update fails to update at least one row assuming the the
114
+ * @throws OptimisticLockingFailureException if the update fails to update at least one row assuming the
115
115
* optimistic locking version check failed.
116
116
* @since 2.0
117
117
*/
@@ -152,7 +152,7 @@ public interface DataAccessStrategy extends RelationResolver {
152
152
* @param domainType the type of entity to be deleted. Implicitly determines the table to operate on. Must not be
153
153
* {@code null}.
154
154
* @param previousVersion The previous version assigned to the instance being saved.
155
- * @throws OptimisticLockingFailureException if the update fails to update at least one row assuming the the
155
+ * @throws OptimisticLockingFailureException if the update fails to update at least one row assuming the
156
156
* optimistic locking version check failed.
157
157
* @since 2.0
158
158
*/
0 commit comments