@@ -88,7 +88,7 @@ default <T> Mono<T> save(Mono<? extends T> entityPublisher, IndexCoordinates ind
88
88
89
89
/**
90
90
* Index entities under the given {@literal type} in the given {@literal index}. If the {@literal index} is
91
- * {@literal null} or empty the index name provided via entity metadata is used. Same for the {@literal type}.
91
+ * {@literal null} or empty the index name provided via entity metadata is used.
92
92
*
93
93
* @param entities must not be {@literal null}.
94
94
* @param index the target index, must not be {@literal null}
@@ -104,7 +104,7 @@ default <T> Flux<T> saveAll(Iterable<T> entities, IndexCoordinates index) {
104
104
105
105
/**
106
106
* Index entities under the given {@literal type} in the given {@literal index}. If the {@literal index} is
107
- * {@literal null} or empty the index name provided via entity metadata is used. Same for the {@literal type}.
107
+ * {@literal null} or empty the index name provided via entity metadata is used.
108
108
*
109
109
* @param entities must not be {@literal null}.
110
110
* @param index the target index, must not be {@literal null}
@@ -228,7 +228,7 @@ default <T> Mono<T> findById(String id, Class<T> entityType, IndexCoordinates in
228
228
* @param entity must not be {@literal null}.
229
229
* @return a {@link Mono} emitting the {@literal id} of the removed document.
230
230
*/
231
- Mono <String > delete (Object entity );
231
+ Mono <String > delete (Object entity );
232
232
233
233
/**
234
234
* Delete the given entity extracting index and type from entity metadata.
@@ -237,7 +237,7 @@ default <T> Mono<T> findById(String id, Class<T> entityType, IndexCoordinates in
237
237
* @param index the target index, must not be {@literal null}
238
238
* @return a {@link Mono} emitting the {@literal id} of the removed document.
239
239
*/
240
- Mono <String > delete (Object entity , IndexCoordinates index );
240
+ Mono <String > delete (Object entity , IndexCoordinates index );
241
241
242
242
/**
243
243
* Delete the entity with given {@literal id}.
0 commit comments