From c7ace75350b54abc5f85fc1f1a79adc7f5a2beb8 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sun, 15 Dec 2024 06:50:38 +0000 Subject: [PATCH] doc: remove references to 'request' --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d42fb3cec..71250a610 100644 --- a/README.md +++ b/README.md @@ -145,8 +145,8 @@ It looks like this: `releases.js`: ```js -module.exports = function (request) { - return github(request, owner, repo).then(function (all) { +module.exports = function () { + return github(null, owner, repo).then(function (all) { // if you need to do something special, you can do it here // ... return all;