From c6d66a2dfe3cc39894e2a0c687df4ce1ac281401 Mon Sep 17 00:00:00 2001 From: Rose M Koron <32436232+rkoron007@users.noreply.github.com> Date: Wed, 26 Apr 2023 15:34:47 -0700 Subject: [PATCH] Apply suggestions from code review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hello! I'm from the docs team 👋, and I apologize for the late review here, but these suggested changes look like great ones to make, so I'm going to commit them! Co-authored-by: Matthew Garrell <69917312+mgarrell777@users.noreply.github.com> --- website/docs/language/state/locking.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/website/docs/language/state/locking.mdx b/website/docs/language/state/locking.mdx index 0c6a69db7d..bbe771d081 100644 --- a/website/docs/language/state/locking.mdx +++ b/website/docs/language/state/locking.mdx @@ -12,12 +12,12 @@ state for all operations that could write state. This prevents others from acquiring the lock and potentially corrupting your state. State locking happens automatically on all operations that could write -state. You won't see any message that it is happening. If state locking fails, -Terraform will not continue. You can disable state locking for most commands -with the `-lock=false` flag but it is not recommended. +state. You do not see any message that it happens. If state locking fails, +Terraform does not continue. You can disable state locking for most commands +with the `-lock=false` flag, but we do not recommend it. -If acquiring the lock is taking longer than expected, Terraform will output -a status message. If Terraform doesn't output a message, state locking is +If acquiring the lock takes longer than expected, Terraform outputs +a status message. If Terraform does not output a message, state locking is still occurring if your backend supports it. Not all backends support locking. The