Skip to content
This repository has been archived by the owner on Nov 11, 2022. It is now read-only.

View: javadoc fixes to asMap #516

Merged
merged 1 commit into from
Dec 17, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
View: javadoc fixes to asMap
  • Loading branch information
dhalperi committed Dec 17, 2016
commit 2c9bbcc5f90feaf387bf4041bb311b5b5f178710
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,9 @@ public static <T> AsIterable<T> asIterable() {

/**
* Returns a {@link View.AsMap} transform that takes a
* {@link PCollection PCollection&lt;KV&lt;K V&gt;&gt;} as
* {@link PCollection PCollection&lt;KV&lt;K, V&gt;&gt;} as
* input and produces a {@link PCollectionView} mapping each window to
* a {@link Map Map&gt;K, V&gt;}. It is required that each key of the input be
* a {@link Map Map&lt;K, V&gt;}. It is required that each key of the input be
* associated with a single value, per window. If this is not the case, precede this
* view with {@code Combine.perKey}, as in the example below, or alternatively
* use {@link View#asMultimap()}.
Expand Down