fix the broken syntax of an @implNote

This commit is contained in:
Gavin King 2024-02-26 14:01:29 +01:00
parent 4fbcfbdaba
commit 32bd334298
1 changed files with 3 additions and 3 deletions

View File

@ -141,9 +141,9 @@ public interface SelectionQuery<R> extends CommonQueryContract {
*
* @return The results as a {@link Stream}
*
* @implNote: The default implementation simply returns
* <code>{@link #list()}.stream()</code>. Concrete implementations
* may provide more efficient implementations.
* @implNote The default implementation defined here simply returns
* {@link #list()}{@code .stream()}. Concrete implementations
* may be more efficient.
*/
default Stream<R> getResultStream() {
return stream();