From cad4ceb07286c1a75873c37a913d7f7815e2f2c2 Mon Sep 17 00:00:00 2001 From: "prettier-toc-me[bot]" <56236715+prettier-toc-me[bot]@users.noreply.github.com> Date: Wed, 5 Jul 2023 14:14:25 +0000 Subject: [PATCH] docs: update ToC for README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 78910895c..cb31c969c 100644 --- a/README.md +++ b/README.md @@ -173,7 +173,7 @@ The `request` option is an instance of [`@octokit/request`](https://github.com/o ```js const { data: authorizations } = await auth.hook( request, - "GET /authorizations", + "GET /authorizations" ); ``` @@ -210,7 +210,7 @@ const scopes = response.headers["x-oauth-scopes"].split(/,\s+/); if (scopes.length) { console.log( - `"${TOKEN}" has ${scopes.length} scopes enabled: ${scopes.join(", ")}`, + `"${TOKEN}" has ${scopes.length} scopes enabled: ${scopes.join(", ")}` ); } else { console.log(`"${TOKEN}" has no scopes enabled`); @@ -230,7 +230,7 @@ const clientId = response.headers["x-oauth-client-id"]; if (clientId) { console.log( - `"${token}" is an OAuth token, its app’s client_id is ${clientId}.`, + `"${token}" is an OAuth token, its app’s client_id is ${clientId}.` ); } else { console.log(`"${token}" is a personal access token`);