diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a0fc842ba2..71206c7732 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,7 +23,7 @@ repos: hooks: - id: check_pdb_hook - repo: https://github.com/codespell-project/codespell - rev: v2.2.6 + rev: v2.3.0 hooks: - id: codespell additional_dependencies: diff --git a/docs/source/design/index.rst b/docs/source/design/index.rst index 1539baa3a1..a8eee28991 100644 --- a/docs/source/design/index.rst +++ b/docs/source/design/index.rst @@ -4,7 +4,7 @@ Overview ######## -Flytekit is comprised of a handful of different logical components, each discusssed in greater detail below: +Flytekit is comprised of a handful of different logical components, each discussed in greater detail below: * :ref:`Models Files ` - These are almost Protobuf generated files. * :ref:`Authoring ` - This provides the core Flyte authoring experiences, allowing users to write tasks, workflows, and launch plans. diff --git a/flytekit/clients/auth_helper.py b/flytekit/clients/auth_helper.py index 04028bc10a..b4a6b7a438 100644 --- a/flytekit/clients/auth_helper.py +++ b/flytekit/clients/auth_helper.py @@ -117,7 +117,7 @@ def get_proxy_authenticator(cfg: PlatformConfig) -> Authenticator: def upgrade_channel_to_proxy_authenticated(cfg: PlatformConfig, in_channel: grpc.Channel) -> grpc.Channel: """ If activated in the platform config, given a grpc.Channel, preferably a secure channel, it returns a composed - channel that uses Interceptor to perform authentication with a proxy infront of Flyte + channel that uses Interceptor to perform authentication with a proxy in front of Flyte :param cfg: PlatformConfig :param in_channel: grpc.Channel Precreated channel :return: grpc.Channel. New composite channel @@ -275,7 +275,7 @@ def send(self, request, *args, **kwargs): def upgrade_session_to_proxy_authenticated(cfg: PlatformConfig, session: requests.Session) -> requests.Session: """ Given a requests.Session, it returns a new session that uses a custom HTTPAdapter to - perform authentication with a proxy infront of Flyte + perform authentication with a proxy in front of Flyte :param cfg: PlatformConfig :param session: requests.Session Precreated session diff --git a/flytekit/models/core/workflow.py b/flytekit/models/core/workflow.py index 44fe7e1f44..4f95c520b8 100644 --- a/flytekit/models/core/workflow.py +++ b/flytekit/models/core/workflow.py @@ -135,7 +135,7 @@ class BranchNode(_common.FlyteIdlEntity): def __init__(self, if_else: IfElseBlock): """ BranchNode is a special node that alter the flow of the workflow graph. It allows the control flow to branch at - runtime based on a series of conditions that get evaluated on various parameters (e.g. inputs, primtives). + runtime based on a series of conditions that get evaluated on various parameters (e.g. inputs, primitives). :param IfElseBlock if_else: """