From ce28b5f791a671e60c1c8c199cae29d771cc0f8e Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Fri, 12 Mar 2021 14:56:02 -0500 Subject: [PATCH] correct code comment --- deployer/aws-lambda/content-origin-request/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployer/aws-lambda/content-origin-request/index.js b/deployer/aws-lambda/content-origin-request/index.js index 9f962f408d43..5a352d8e842b 100644 --- a/deployer/aws-lambda/content-origin-request/index.js +++ b/deployer/aws-lambda/content-origin-request/index.js @@ -80,7 +80,7 @@ exports.handler = async (event) => { // If the URL was something like `https://domain/en-US/search/`, our code // would make a that a redirect to `/en-US/search` (stripping the trailing slash). - // But if it was `https://domain/en-US/search/` it'd make a redirect + // But if it was `https://domain//en-US/search/` it'd make a redirect // to `//en-US/search`. // However, if pathname starts with `//` the Location header might look // relative but it's actually an absolute URL.