From a520b95ab363d7070f7f3ecebbfc17f306ce799d Mon Sep 17 00:00:00 2001 From: Shahar Epstein <60007259+shahar1@users.noreply.github.com> Date: Tue, 2 Apr 2024 00:07:44 +0300 Subject: [PATCH] Fix typo in side-inputs (#30817) --- .../core-transforms/side-inputs/description.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/learning/tour-of-beam/learning-content/core-transforms/side-inputs/description.md b/learning/tour-of-beam/learning-content/core-transforms/side-inputs/description.md index 91e6a1f4c5e0..a64ccde52950 100644 --- a/learning/tour-of-beam/learning-content/core-transforms/side-inputs/description.md +++ b/learning/tour-of-beam/learning-content/core-transforms/side-inputs/description.md @@ -113,7 +113,7 @@ func init() { ``` # Side inputs are available as extra arguments in the DoFn's process method or Map / FlatMap's callable. # Optional, positional, and keyword arguments are all supported. Deferred arguments are unwrapped into their -# actual values. For example, using pvalue.AsIteor(pcoll) at pipeline construction time results in an iterable +# actual values. For example, using pvalue.AsIter(pcoll) at pipeline construction time results in an iterable # of the actual elements of pcoll being passed into each process invocation. In this example, side inputs are # passed to a FlatMap transform as extra arguments and consumed by filter_using_length. words = ... @@ -289,4 +289,4 @@ def join_fn(persons, cities_to_time): 'name': person['name'], 'city ``` -{{end}} \ No newline at end of file +{{end}}