From e35c25da4459f7794d3f0abffdf558e46e9a214c Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Wed, 22 Dec 2021 11:36:35 -0800 Subject: [PATCH] website: Try function documentation "provably" vs "probably" typo This paragraph is trying to say that try only works for dynamic errors and not for errors that are _not_ based on dynamic decision-making in expressions. I'm not sure if this typo was always here or if it was mistakenly "corrected" at some point, but either way the word "probably" changes the meaning of this sentence entirely, making it seem like Terraform is hedging the likelihood of a problem rather than checking exactly for one. --- website/docs/language/functions/try.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/language/functions/try.mdx b/website/docs/language/functions/try.mdx index d7c1f0ede..a23d1def5 100644 --- a/website/docs/language/functions/try.mdx +++ b/website/docs/language/functions/try.mdx @@ -94,7 +94,7 @@ fallback ``` The `try` function will _not_ catch errors relating to constructs that are -probably invalid even before dynamic expression evaluation, such as a malformed +provably invalid even before dynamic expression evaluation, such as a malformed reference or a reference to a top-level object that has not been declared: ```