Since creating issue #848, I noticed that in the commit history, the correction was made and the space was removed after Host:, and then the most recent commit reversed it back with the space added again. Now they are both the same again, and my original issue has been marked as closed.
Preview was deployed to: https://pull-request-852.kb-adg.pages.dev/
Originally posted by @github-actions[bot] in #852 (comment)
If I am understanding the intention of what the example is trying to achieve, we should remove the space after Host: in the second entry of the example, and add a second space between GET and /foo/bar/, which I was able to do using the Unicode em space (8195 in UTF-8) directly, as just using two regular spaces will not correctly show on the page.
From:
`GET /foo/bar/ HTTP/1.1
Host: example.org`
To:
`GET /foo/bar/ HTTP/1.1
Host:example.org`
Since creating issue #848, I noticed that in the commit history, the correction was made and the space was removed after
Host:, and then the most recent commit reversed it back with the space added again. Now they are both the same again, and my original issue has been marked as closed.Originally posted by @github-actions[bot] in #852 (comment)
If I am understanding the intention of what the example is trying to achieve, we should remove the space after
Host:in the second entry of the example, and add a second space betweenGETand/foo/bar/, which I was able to do using the Unicode em space (8195 in UTF-8) directly, as just using two regular spaces will not correctly show on the page.From:
To: