From 75ffae3d648be44ff61003ee6fc5236e5633f7f2 Mon Sep 17 00:00:00 2001 From: Tim Walter <28287345+fearnoeval@users.noreply.github.com> Date: Wed, 10 May 2023 20:11:32 -0400 Subject: [PATCH] Add missing line continuation to REST API authentication docs (#25482) (#25483) --- content/rest/overview/authenticating-to-the-rest-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/rest/overview/authenticating-to-the-rest-api.md b/content/rest/overview/authenticating-to-the-rest-api.md index 98fbf0399b..3edd0c5418 100644 --- a/content/rest/overview/authenticating-to-the-rest-api.md +++ b/content/rest/overview/authenticating-to-the-rest-api.md @@ -60,7 +60,7 @@ For example: ```shell curl --request POST \ ---url "{% data variables.product.api_url_code %}/authorizations" +--url "{% data variables.product.api_url_code %}/authorizations" \ --user CLIENT_ID:CLIENT_SECRET{% ifversion api-date-versioning %} \ --header "X-GitHub-Api-Version: {{ allVersions[currentVersion].latestApiVersion }}"{% endif %} ```