You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lc...@apache.org on 2020/02/27 18:30:36 UTC

[beam] branch master updated: [BEAM-5524] Fix minor issue in style guide.

This is an automated email from the ASF dual-hosted git repository.

lcwik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 7cd1353  [BEAM-5524] Fix minor issue in style guide.
     new 8b69513  Merge pull request #10987 from lukecwik/beam5524
7cd1353 is described below

commit 7cd1353e2125bd5cd40d9b24ace2c8b35f710a3e
Author: Luke Cwik <lc...@google.com>
AuthorDate: Thu Feb 27 09:28:01 2020 -0800

    [BEAM-5524] Fix minor issue in style guide.
---
 website/src/contribute/ptransform-style-guide.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/website/src/contribute/ptransform-style-guide.md b/website/src/contribute/ptransform-style-guide.md
index 4f4d253..de531a4 100644
--- a/website/src/contribute/ptransform-style-guide.md
+++ b/website/src/contribute/ptransform-style-guide.md
@@ -239,7 +239,7 @@ public class MyTransform extends PTransform<..., PCollectionTuple> {
   private final TupleTag<Moo> mooTag = new TupleTag<Moo>() {};
   private final TupleTag<Blah> blahTag = new TupleTag<Blah>() {};
   ...
-  PCollectionTuple apply(... input) {
+  PCollectionTuple expand(... input) {
     ...
     PCollection<Moo> moo = ...;
     PCollection<Blah> blah = ...;