From a2fb28e63e923b1c46ae1f611c237cf1d47e96b4 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Wed, 7 Jun 2023 09:26:25 +0900 Subject: [PATCH] docs: Correct comment mis-spelling (#2642) --- examples/karpenter/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/karpenter/main.tf b/examples/karpenter/main.tf index a9c0e883..068ba6c2 100644 --- a/examples/karpenter/main.tf +++ b/examples/karpenter/main.tf @@ -93,13 +93,13 @@ module "eks" { resources = { limits = { cpu = "0.25" - # We are targetting the smallest Task size of 512Mb, so we subtract 256Mb from the + # We are targeting the smallest Task size of 512Mb, so we subtract 256Mb from the # request/limit to ensure we can fit within that task memory = "256M" } requests = { cpu = "0.25" - # We are targetting the smallest Task size of 512Mb, so we subtract 256Mb from the + # We are targeting the smallest Task size of 512Mb, so we subtract 256Mb from the # request/limit to ensure we can fit within that task memory = "256M" }