From b84d71835dcfa5564f03235236073e890b26856e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20J=C3=A4ger?= <115732771+juljaeg@users.noreply.github.com> Date: Wed, 26 Apr 2023 11:01:54 +0200 Subject: [PATCH] docs: invalid example for comma separated ignore list --- docs/user-guide/annotations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/annotations.md b/docs/user-guide/annotations.md index 391535194..e8f43e160 100644 --- a/docs/user-guide/annotations.md +++ b/docs/user-guide/annotations.md @@ -13,7 +13,7 @@ Multiple rules can be specified as a comma-separated list: ```hcl resource "aws_instance" "foo" { - # tflint-ignore: aws_instance_invalid_type, other_rule + # tflint-ignore: aws_instance_invalid_type,other_rule instance_type = "t1.2xlarge" } ```