From 1c28c4bd7f89c93e40203d29964eb8beab5be3a7 Mon Sep 17 00:00:00 2001 From: v4nft <97479997+v4nft@users.noreply.github.com> Date: Sun, 12 May 2024 00:49:49 -0400 Subject: [PATCH] Fix typo update-plans.md "than" was incorrectly used instead of "then". Also made a couple of other grammatical improvements. --- themes/default/content/docs/concepts/update-plans.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/default/content/docs/concepts/update-plans.md b/themes/default/content/docs/concepts/update-plans.md index aecf72377a1..43001dbec6a 100644 --- a/themes/default/content/docs/concepts/update-plans.md +++ b/themes/default/content/docs/concepts/update-plans.md @@ -43,7 +43,7 @@ simply records `unknown`. The next most common issue is creating resources inside an [`apply` function](/docs/concepts/inputs-outputs/#apply). If the value for the apply is -unknown at preview time than the entire apply function will not run. This results in the plan not recording +unknown at preview time, then the apply function will not run. This results in the plan not recording anything for the resources created inside the apply and reporting an error at update time when they try to create. This mostly comes up in the context of needing to create a resource for every item in an array, we have [an issue on GitHub](https://github.com/pulumi/pulumi/issues/4834) tracking support for this.