diff --git a/sdks/go/pkg/beam/runners/prism/internal/config/config_test.go b/sdks/go/pkg/beam/runners/prism/internal/config/config_test.go index 59fcdd56d65f..4c2642e78f99 100644 --- a/sdks/go/pkg/beam/runners/prism/internal/config/config_test.go +++ b/sdks/go/pkg/beam/runners/prism/internal/config/config_test.go @@ -54,7 +54,7 @@ func TestHandlerRegistry(t *testing.T) { type spotCheck struct { v, h string - want interface{} + want any } tests := []struct { name string diff --git a/sdks/go/pkg/beam/runners/prism/internal/urns/urns.go b/sdks/go/pkg/beam/runners/prism/internal/urns/urns.go index 09ee59c969a3..035ab3c0727f 100644 --- a/sdks/go/pkg/beam/runners/prism/internal/urns/urns.go +++ b/sdks/go/pkg/beam/runners/prism/internal/urns/urns.go @@ -13,7 +13,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -// Package urn handles extracting urns from all the protos. +// Package urns handles extracting urns from all the protos. package urns import ( diff --git a/sdks/go/test/integration/primitives/checkpointing.go b/sdks/go/test/integration/primitives/checkpointing.go index ae61f3186294..7a349699dd4d 100644 --- a/sdks/go/test/integration/primitives/checkpointing.go +++ b/sdks/go/test/integration/primitives/checkpointing.go @@ -43,7 +43,7 @@ func (fn *selfCheckpointingDoFn) CreateInitialRestriction(_ []byte) offsetrange. } } -// CreateTracker wraps the fiven restriction into a LockRTracker type. +// CreateTracker wraps the given restriction into a LockRTracker type. func (fn *selfCheckpointingDoFn) CreateTracker(rest offsetrange.Restriction) *sdf.LockRTracker { return sdf.NewLockRTracker(offsetrange.NewTracker(rest)) }