Update hutool-core/src/main/java/cn/hutool/core/stream/EasyStream.java

This commit is contained in:
emptypoint 2023-02-28 02:19:49 +00:00 committed by Gitee
parent cda1ee377b
commit 5f97b3d47c
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -210,7 +210,7 @@ public class EasyStream<T> extends AbstractEnhancedWrappedStream<T, EasyStream<T
* 适用场景在一些生成常量流随机元素等
*
* @param <T> 元素类型
* @param s 用来生成元素的 {@code Supplier}
* @param s 用来生成元素的 {@link Supplier}
* @return 无限串行无序流
*/
public static <T> EasyStream<T> generate(final Supplier<T> s) {