From 4fc3ea6e09cbabf19b68ac43afafe173e2a4b4a2 Mon Sep 17 00:00:00 2001 From: Daniel Petty Date: Wed, 28 Aug 2019 11:47:14 -0600 Subject: [PATCH] Update output --- website/docs/commands/taint.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/commands/taint.html.markdown b/website/docs/commands/taint.html.markdown index ef7e233f7f..96e4e38306 100644 --- a/website/docs/commands/taint.html.markdown +++ b/website/docs/commands/taint.html.markdown @@ -69,7 +69,7 @@ This example will taint a single resource: ``` $ terraform taint aws_security_group.allow_all -The resource aws_security_group.allow_all in the module root has been marked as tainted! +The resource aws_security_group.allow_all in the module root has been marked as tainted. ``` ## Example: Tainting a Resource within a Module @@ -78,5 +78,5 @@ This example will only taint a resource within a module: ``` $ terraform taint "module.couchbase.aws_instance.cb_node[9]" -Resource instance module.couchbase.aws_instance.cb_node[9] has been marked as tainted! +Resource instance module.couchbase.aws_instance.cb_node[9] has been marked as tainted. ```