From eeb3252b16ca823c23ec5b35d128d1abc422cb6e Mon Sep 17 00:00:00 2001 From: nate nowack Date: Fri, 5 Jan 2024 11:23:15 -0600 Subject: [PATCH] fix typo in docs (#364) --- prefect_aws/ecs.py | 2 +- prefect_aws/workers/ecs_worker.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/prefect_aws/ecs.py b/prefect_aws/ecs.py index 8e7052f2..ac5dd333 100644 --- a/prefect_aws/ecs.py +++ b/prefect_aws/ecs.py @@ -407,7 +407,7 @@ class ECSTask(Infrastructure): description=( "The type of ECS task run infrastructure that should be used. Note that" " 'FARGATE_SPOT' is not a formal ECS launch type, but we will configure" - " the proper capacity provider stategy if set here." + " the proper capacity provider strategy if set here." ), ) ) diff --git a/prefect_aws/workers/ecs_worker.py b/prefect_aws/workers/ecs_worker.py index c55e0f30..6d3c8ec7 100644 --- a/prefect_aws/workers/ecs_worker.py +++ b/prefect_aws/workers/ecs_worker.py @@ -420,7 +420,7 @@ class ECSVariables(BaseVariables): description=( "The type of ECS task run infrastructure that should be used. Note that" " 'FARGATE_SPOT' is not a formal ECS launch type, but we will configure" - " the proper capacity provider stategy if set here." + " the proper capacity provider strategy if set here." ), ) )