Skip to content

Commit

Permalink
[Python] Fix typos in doc (apache#26218)
Browse files Browse the repository at this point in the history
  • Loading branch information
riteshghorse authored and lostluck committed Apr 12, 2023
1 parent c2822f5 commit b27a77e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sdks/python/apache_beam/options/pipeline_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def view_as(self, cls):
cls: PipelineOptions class or any of its subclasses.
Returns:
An instance of cls that is intitialized using options contained in current
An instance of cls that is initialized using options contained in current
object.
"""
Expand Down Expand Up @@ -523,7 +523,7 @@ def _add_argparse_args(cls, parser):
type=json.loads,
default={},
help=(
'For convienience, Beam provides the ability to automatically '
'For convenience, Beam provides the ability to automatically '
'download and start various services (such as expansion services) '
'used at pipeline construction and execution. These services are '
'identified by gradle target. This option provides the ability to '
Expand Down Expand Up @@ -590,7 +590,7 @@ def _add_argparse_args(cls, parser):
default=False,
action='store_true',
help='Use non-deterministic coders (such as pickling) for key-grouping '
'operations such as GropuByKey. This is unsafe, as runners may group '
'operations such as GroupByKey. This is unsafe, as runners may group '
'keys based on their encoded bytes, but is available for backwards '
'compatibility. See BEAM-11719.')
parser.add_argument(
Expand Down Expand Up @@ -795,7 +795,7 @@ def _add_argparse_args(cls, parser):
default=None,
help=(
'Options to configure the Dataflow service. These '
'options decouple service side feature availbility '
'options decouple service side feature availability '
'from the Apache Beam release cycle.'
'Note: If set programmatically, must be set as a '
'list of strings'))
Expand Down Expand Up @@ -1239,7 +1239,7 @@ def _add_argparse_args(cls, parser):
help=(
'Bootstrap the python process before executing any code by '
'importing all the plugins used in the pipeline. Please pass a '
'comma separatedlist of import paths to be included. This is '
'comma separated list of import paths to be included. This is '
'currently an experimental flag and provides no stability. '
'Multiple --beam_plugin options can be specified if more than '
'one plugin is needed.'))
Expand Down

0 comments on commit b27a77e

Please sign in to comment.