diff --git a/sdk/src/main/java/com/google/cloud/dataflow/sdk/transforms/View.java b/sdk/src/main/java/com/google/cloud/dataflow/sdk/transforms/View.java index e2c4487ae5..ce2a3afe1b 100644 --- a/sdk/src/main/java/com/google/cloud/dataflow/sdk/transforms/View.java +++ b/sdk/src/main/java/com/google/cloud/dataflow/sdk/transforms/View.java @@ -191,9 +191,9 @@ public static AsIterable asIterable() { /** * Returns a {@link View.AsMap} transform that takes a - * {@link PCollection PCollection<KV<K V>>} as + * {@link PCollection PCollection<KV<K, V>>} as * input and produces a {@link PCollectionView} mapping each window to - * a {@link Map Map>K, V>}. It is required that each key of the input be + * a {@link Map Map<K, V>}. 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()}.