Skip to content

Commit 29a8287

Browse files
authored
Replace curly quotes in code block
This removes the extraneous JSON syntax highlighting in the code block in https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc-endpoints.html#vpc-endpoint-policy.
1 parent e391fe5 commit 29a8287

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc_source/configuration-vpc-endpoints.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ You need to include both the qualified and the unqualified function ARN in the r
9797
"lambda:InvokeFunction"
9898
],
9999
"Resource": [
100-
"arn:aws:lambda:us-east-2:123456789012:function:my-function,
101-
"arn:aws:lambda:us-east-2:123456789012:function:my-function:*
100+
"arn:aws:lambda:us-east-2:123456789012:function:my-function",
101+
"arn:aws:lambda:us-east-2:123456789012:function:my-function:*"
102102
]
103103
}
104104
]
105105
}
106-
```
106+
```

0 commit comments

Comments
 (0)