From 1dd9e1cb53fffb8fe4955e81bc87119e40e6512b Mon Sep 17 00:00:00 2001 From: Johan Brandhorst-Satzkorn Date: Wed, 26 Oct 2022 12:44:48 -0500 Subject: [PATCH] Fix rendering of custom response headers (#17652) The double quote used broke syntax highlighting. Replace with a proper double quote. --- website/content/docs/configuration/listener/tcp.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/docs/configuration/listener/tcp.mdx b/website/content/docs/configuration/listener/tcp.mdx index dbd3542b6..f152137cd 100644 --- a/website/content/docs/configuration/listener/tcp.mdx +++ b/website/content/docs/configuration/listener/tcp.mdx @@ -294,7 +294,7 @@ listener "tcp" { }, "301" = { "Strict-Transport-Security" = ["max-age=31536000"], - “Content-Security-Policy" = ["connect-src https://clusterC.vault.external/"], + "Content-Security-Policy" = ["connect-src https://clusterC.vault.external/"], }, } }