Skip to content

Commit f81a0f9

Browse files
authored
Merge pull request GoogleCloudPlatform#516 from dhalperi/javadoc-fixes
View: javadoc fixes to asMap
2 parents debf9dc + 2c9bbcc commit f81a0f9

File tree

1 file changed

+2
-2
lines changed
  • sdk/src/main/java/com/google/cloud/dataflow/sdk/transforms

1 file changed

+2
-2
lines changed

sdk/src/main/java/com/google/cloud/dataflow/sdk/transforms/View.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,9 +191,9 @@ public static <T> AsIterable<T> asIterable() {
191191

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

0 commit comments

Comments
 (0)