[ 
https://issues.apache.org/jira/browse/BEAM-11424?focusedWorklogId=547272&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-547272
 ]

ASF GitHub Bot logged work on BEAM-11424:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 03/Feb/21 20:41
            Start Date: 03/Feb/21 20:41
    Worklog Time Spent: 10m 
      Work Description: 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]


Issue Time Tracking
-------------------

    Worklog Id:     (was: 547272)
    Time Spent: 8h 40m  (was: 8.5h)

> [Website revamp] Development of Contribution Guide page
> -------------------------------------------------------
>
>                 Key: BEAM-11424
>                 URL: https://issues.apache.org/jira/browse/BEAM-11424
>             Project: Beam
>          Issue Type: Improvement
>          Components: website
>            Reporter: Agnieszka Sell
>            Assignee: Jakub Sadowski
>            Priority: P2
>              Labels: website-revamp-2020, website-revamp-sprint-9
>          Time Spent: 8h 40m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to