Skip to content

Commit 961b92f

Browse files
authored
Adjusting Stream<T> mkd
1 parent 23b15b3 commit 961b92f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ocp/chapter/fifteen/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ These are the common primitive stream methods:
881881
| Method | Primitive Stream | Description |
882882
| :--------------------------------------------- | :------------------ | :-------------------------------------------------------------------------------------------------------------- |
883883
| OptionalDouble average() | IntStream, LongStream and DoubleStream | The arithmetic mean of the elements |
884-
| Stream*<T>* boxed() | IntStream, LongStream and DoubleStream | A Stream*<T>* where T is the wrapper class associated with the primitive value |
884+
| Stream<_T_> boxed() | IntStream, LongStream and DoubleStream | A Stream<_T_> where T is the wrapper class associated with the primitive value |
885885
| OptionalInt max(), OptionalLong max() and OptionalDouble max() | IntStream, LongStream and DoubleStream | The maximum element of the stream |
886886
| OptionalInt min(), OptionalLong min() and OptionalDouble min() | IntStream, LongStream and DoubleStream | The minimum element of the stream |
887887
| IntStream range(int a, int b) and LongStream range(long a, long b) | IntStream and LongStream | Returns a primitive stream from a (inclusive) to b (exclusive) |

0 commit comments

Comments
 (0)