From 24780506361da426be7bf6048c26d0550772c43e Mon Sep 17 00:00:00 2001 From: Kyle Stanley Date: Mon, 22 Sep 2025 21:16:47 -0500 Subject: [PATCH] Update description.md Fixed a typo in the import path for the Go example code snippit. I'm looking at these Go import paths in a couple of the example snippits and they appear to be a previous version which doesn't match the sandbox code import paths. Should those be updated as well? --- .../learning-content/common-transforms/filter/description.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learning/tour-of-beam/learning-content/common-transforms/filter/description.md b/learning/tour-of-beam/learning-content/common-transforms/filter/description.md index 96f4b549625b..b4ea26be3758 100644 --- a/learning/tour-of-beam/learning-content/common-transforms/filter/description.md +++ b/learning/tour-of-beam/learning-content/common-transforms/filter/description.md @@ -17,7 +17,7 @@ limitations under the License. {{if (eq .Sdk "go")}} ``` import ( - "github.com/apache/fbeam/sdks/go/pkg/beam" + "github.com/apache/beam/sdks/go/pkg/beam" "github.com/apache/beam/sdks/go/pkg/beam/transforms/filter" )