Skip to content

Commit

Permalink
Fixed Javadoc error
Browse files Browse the repository at this point in the history
  • Loading branch information
j-baker committed Feb 11, 2016
1 parent 23d2180 commit 6c03698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/palantir/common/streams/KeyedStream.java
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ static <K, V> KeyedStream<K, V> stream(Map<K, V> map) {
/**
* Collects a stream and restreams it as a keyed stream, where key and value are the same.
*
* <p>Consider the (less fluent) {@link #keyedStream(stream)} if the stream is likely to be
* <p>Consider the (less fluent) {@link #of(Stream)} if the stream is likely to be
* large and/or concurrent, as it avoids serializing into a temporary collection.
*/
static <V> Collector<V, List<V>, KeyedStream<V, V>> toKeyedStream() {
Expand Down

0 comments on commit 6c03698

Please sign in to comment.