You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by da...@apache.org on 2022/09/07 01:49:03 UTC

[beam] branch users/damccorm/example updated: Update doc.go

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

damccorm pushed a commit to branch users/damccorm/example
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/users/damccorm/example by this push:
     new 11ba30a98d4 Update doc.go
11ba30a98d4 is described below

commit 11ba30a98d49c711d9fe386b9eda427f9db0bc3d
Author: Danny McCormick <da...@google.com>
AuthorDate: Tue Sep 6 21:48:57 2022 -0400

    Update doc.go
---
 sdks/go/pkg/beam/register/doc.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdks/go/pkg/beam/register/doc.go b/sdks/go/pkg/beam/register/doc.go
index a8178df37ec..7b17fe64579 100644
--- a/sdks/go/pkg/beam/register/doc.go
+++ b/sdks/go/pkg/beam/register/doc.go
@@ -25,6 +25,6 @@ For example, given a DoFn with a ProcessElement function that takes 4 inputs and
 register.DoFn4x3[input1 type, input2 type, input3 type, input4 type, output1 type, output2 type, output3 type](&doFn{}) during pipeline construction. This will
 register your DoFn and produce optimized callers for your DoFn to significantly speed up execution at runtime.
 
-See DoFn2x1 for a full example.
+See DoFn3x1 for a full example.
 */
 package register