From 753267381b4b348af124d3110e510639b032055d Mon Sep 17 00:00:00 2001 From: Sahil Goyal <87982509+sahil20021008@users.noreply.github.com> Date: Mon, 14 Apr 2025 20:20:30 +0000 Subject: [PATCH] chore: changing example token value --- .../@stdlib/_tools/github/subscriptions/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/_tools/github/subscriptions/README.md b/lib/node_modules/@stdlib/_tools/github/subscriptions/README.md index e61c859dc6b2..53890cbb4b48 100644 --- a/lib/node_modules/@stdlib/_tools/github/subscriptions/README.md +++ b/lib/node_modules/@stdlib/_tools/github/subscriptions/README.md @@ -80,7 +80,7 @@ To [authenticate][github-oauth2] with GitHub, set the [`token`][github-token] op ```javascript var opts = { - 'token': 'tkjorjk34ek3nj4!' + 'token': 'ghp_exampletoken1234567890abcdef' }; subscriptions( opts, clbk ); @@ -119,7 +119,7 @@ Creates a reusable `function`. ```javascript var opts = { 'username': 'kgryte', - 'token': 'tkjorjk34ek3nj4!' + 'token': 'ghp_exampletoken1234567890abcdef' }; var get = subscriptions.factory( opts, clbk );