doc: remove references to 'request'

This commit is contained in:
AJ ONeal
2024-12-16 00:01:14 +00:00
parent 14cebeeb61
commit 217d61ed34
+2 -2
View File
@@ -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;