From 4ac03a281015a59eb5202b17a3cdb793f7bd7802 Mon Sep 17 00:00:00 2001 From: Rob Nelson Date: Mon, 22 Aug 2022 14:46:15 -0400 Subject: [PATCH] Update naming.mdx Typo in text --- website/docs/plugin/sdkv2/best-practices/naming.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/plugin/sdkv2/best-practices/naming.mdx b/website/docs/plugin/sdkv2/best-practices/naming.mdx index 9a260a5fd3d..583c7e07873 100644 --- a/website/docs/plugin/sdkv2/best-practices/naming.mdx +++ b/website/docs/plugin/sdkv2/best-practices/naming.mdx @@ -66,7 +66,7 @@ verbs if the attribute is specifying whether to take some action, as with the `delete_on_termination` flag within the `root_block_device` block. Boolean attributes are ideally oriented so that `true` means to do something -and `false` means not to do it; it can be confusing do have "negative" flags +and `false` means not to do it; it can be confusing to have "negative" flags that prevent something from happening, since they require the user to follow a double-negative in order to reason about what value should be provided.