👋 Hey folks, received this in Docs OS repo so am transferring it over here. Let me know if it should be reviewed elsewhere. [Original issue here](https://github.com/github/docs/issues/26396) cc @pietervdheijden ### Code of Conduct - [X] I have read and agree to the GitHub Docs project's [Code of Conduct](https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md) ### What article on docs.github.com is affected? All rest articles containing code samples with header X-GitHub-Api-Version. For example: - https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28 - https://docs.github.com/en/rest/repos/autolinks?apiVersion=2022-11-28 - https://docs.github.com/en/rest/repos/contents?apiVersion=2022-11-28 ### What part(s) of the article would you like to see updated? Line: `-H "Authorization: Bearer <YOUR-TOKEN>"\` Doesn't have a space between `"` and `\`. As a result, the cURL request does not work correctly. To fix this, the line should be replaced by: `-H "Authorization: Bearer <YOUR-TOKEN>" \` ### Additional information 