You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by al...@apache.org on 2019/05/25 23:22:30 UTC

[beam] branch master updated: Fix small typo in vet.go

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

altay 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 519e045  Fix small typo in vet.go
     new b1ab819  Merge pull request #8685 from lostluck/patch-4
519e045 is described below

commit 519e045b59764b869d37c7b377cd6cfcebb4c588
Author: Robert Burke <lo...@users.noreply.github.com>
AuthorDate: Fri May 24 16:35:53 2019 -0700

    Fix small typo in vet.go
---
 sdks/go/pkg/beam/runners/vet/vet.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdks/go/pkg/beam/runners/vet/vet.go b/sdks/go/pkg/beam/runners/vet/vet.go
index a700a80..72ef244 100644
--- a/sdks/go/pkg/beam/runners/vet/vet.go
+++ b/sdks/go/pkg/beam/runners/vet/vet.go
@@ -203,7 +203,7 @@ func (e *Eval) summary() {
 	}
 }
 
-// NameType turns a reflect.Type into a string based on it's name.
+// NameType turns a reflect.Type into a string based on its name.
 // It prefixes Emit or Iter if the function satisfies the constraints of those types.
 func NameType(t reflect.Type) string {
 	if emt, ok := makeEmitter(t); ok {