Jakub-Sadowski commented on a change in pull request #13565:
URL: https://github.com/apache/beam/pull/13565#discussion_r569733583



##########
File path: website/www/site/content/en/contribute/ptransform-style-guide.md
##########
@@ -230,76 +234,76 @@ E.g. if you want to return a `PCollection<Foo>` and a 
`PCollection<Bar>`, expose
 
 For example:
 
-{{< highlight java >}}
+{{< highlight language="java" >}}
 public class MyTransform extends PTransform<..., PCollectionTuple> {
-  private final TupleTag<Moo> mooTag = new TupleTag<Moo>() {};
-  private final TupleTag<Blah> blahTag = new TupleTag<Blah>() {};
-  ...
-  PCollectionTuple expand(... input) {
-    ...
-    PCollection<Moo> moo = ...;
-    PCollection<Blah> blah = ...;
-    return PCollectionTuple.of(mooTag, moo)
-                           .and(blahTag, blah);
-  }
+private final TupleTag<Moo> mooTag = new TupleTag<Moo>() {};
+private final TupleTag<Blah> blahTag = new TupleTag<Blah>() {};
+...
+PCollectionTuple expand(... input) {
+...
+PCollection<Moo> moo = ...;
+PCollection<Blah> blah = ...;
+return PCollectionTuple.of(mooTag, moo)
+.and(blahTag, blah);
+}
 
-  public TupleTag<Moo> getMooTag() {
-    return mooTag;
-  }
+public TupleTag<Moo> getMooTag() {
+return mooTag;
+}
 
-  public TupleTag<Blah> getBlahTag() {
-    return blahTag;
-  }
-  ...

Review comment:
       Yes, you are right, I changed only blog and documentation folders, so 
now I will manually change the rest as u suggested below




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to