From 60b162de45ee4af26882ed805ad6d4f03c3929b9 Mon Sep 17 00:00:00 2001 From: David Wittman Date: Fri, 26 May 2017 16:04:52 -0500 Subject: [PATCH] docs: Fix inline comment in AWS instance resource (#14865) `//` appears to be a valid inline comment, but it affects the formatting in the documentation. --- website/source/docs/providers/aws/r/instance.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/providers/aws/r/instance.html.markdown b/website/source/docs/providers/aws/r/instance.html.markdown index b059b1a8d..4acff4daf 100644 --- a/website/source/docs/providers/aws/r/instance.html.markdown +++ b/website/source/docs/providers/aws/r/instance.html.markdown @@ -202,7 +202,7 @@ resource "aws_network_interface" "foo" { } resource "aws_instance" "foo" { - ami = "ami-22b9a343" // us-west-2 + ami = "ami-22b9a343" # us-west-2 instance_type = "t2.micro" network_interface { network_interface_id = "${aws_network_interface.foo.id}"