Skip to content

Commit b739193

Browse files
committed
Replace Github with GitHub
1 parent 50232d0 commit b739193

File tree

112 files changed

+254
-254
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+254
-254
lines changed

lib/node_modules/@stdlib/_tools/github/create-issue/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ Options:
197197
--protocol proto Request protocol. Default: https.
198198
--hostname host Hostname. Default: api.github.com.
199199
-p, --port port Port. Default: 443 (https) or 80 (http).
200-
--token token Github access token.
200+
--token token GitHub access token.
201201
--ua, --useragent ua User agent.
202202
--title title Issue title.
203203
--body content Issue content.

lib/node_modules/@stdlib/_tools/github/create-issue/docs/usage.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Options:
88
--protocol proto Request protocol. Default: https.
99
--hostname host Hostname. Default: api.github.com.
1010
-p, --port port Port. Default: 443 (https) or 80 (http).
11-
--token token Github access token.
11+
--token token GitHub access token.
1212
--ua, --useragent ua User agent.
1313
--title title Issue title.
1414
--body content Issue content.

lib/node_modules/@stdlib/_tools/github/create-issue/lib/headers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var debug = logger( 'github-create-issue:headers' );
3535
*
3636
* @private
3737
* @param {Options} opts - provided options
38-
* @param {string} [opts.token] - Github access token
38+
* @param {string} [opts.token] - GitHub access token
3939
* @param {string} [opts.accept] - media type
4040
* @param {string} [opts.useragent] - user agent string
4141
* @returns {Object} request headers

lib/node_modules/@stdlib/_tools/github/create-repo/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var createRepo = require( '@stdlib/_tools/github/create-repo' );
4242

4343
#### createRepo( name, options, clbk )
4444

45-
[Creates][github-create-repo] a Github repository.
45+
[Creates][github-create-repo] a GitHub repository.
4646

4747
<!-- run-disable -->
4848

@@ -70,7 +70,7 @@ function clbk( error, repo, info ) {
7070

7171
The `function` accepts the following `options`:
7272

73-
- **token**: Github [access token][github-token] (_required_).
73+
- **token**: GitHub [access token][github-token] (_required_).
7474
- **useragent**: [user agent][github-user-agent] `string`.
7575
- **org**: organization name. If no organization is specified, the repository is created as a personal repository for the authenticated user.
7676
- **desc**: repository description. Default: `""`.
@@ -88,7 +88,7 @@ The `function` accepts the following `options`:
8888
- **allowMergeCommit**: `boolean` indicating whether to allow merging pull requests with a merge commit. Default: `true`.
8989
- **allowRebaseMerge**: `boolean` indicating whether to allow rebase-merging pull requests. Default: `true`.
9090

91-
To [authenticate][github-oauth2] with Github, set the [`token`][github-token] option.
91+
To [authenticate][github-oauth2] with GitHub, set the [`token`][github-token] option.
9292

9393
<!-- run-disable -->
9494

@@ -230,9 +230,9 @@ Options:
230230

231231
-h, --help Print this message.
232232
-V, --version Print the package version.
233-
--token token Github access token.
233+
--token token GitHub access token.
234234
-ua, --useragent ua User agent.
235-
--org organization Github organization.
235+
--org organization GitHub organization.
236236
--desc desc Repository description.
237237
--homepage url Project homepage.
238238
--private Set the repository as private.

lib/node_modules/@stdlib/_tools/github/create-repo/docs/usage.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ Options:
55

66
-h, --help Print this message.
77
-V, --version Print the package version.
8-
--token token Github access token.
8+
--token token GitHub access token.
99
-ua, --useragent ua User agent.
10-
--org organization Github organization.
10+
--org organization GitHub organization.
1111
--desc desc Repository description.
1212
--homepage url Project homepage.
1313
--private Set the repository as private.

lib/node_modules/@stdlib/_tools/github/create-repo/lib/factory.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ var DEFAULT_HTTPS_PORT = 443;
3737
// MAIN //
3838

3939
/**
40-
* Returns a function for creating a Github repository.
40+
* Returns a function for creating a GitHub repository.
4141
*
4242
* @param {Object} options - function options
43-
* @param {string} options.token - Github access token
43+
* @param {string} options.token - GitHub access token
4444
* @param {string} [options.useragent] - user agent string
4545
* @param {string} [options.org] - organization name
4646
* @param {string} [options.desc=""] - repository description
@@ -59,7 +59,7 @@ var DEFAULT_HTTPS_PORT = 443;
5959
* @param {boolean} [options.allowRebaseMerge=true] - boolean indicating whether to allow rebase-merging pull requests
6060
* @param {Function} clbk - callback to invoke upon query completion
6161
* @throws {TypeError} callback argument must be a function
62-
* @returns {Function} function for creating a Github repository
62+
* @returns {Function} function for creating a GitHub repository
6363
*/
6464
function factory( options, clbk ) {
6565
var opts;
@@ -82,7 +82,7 @@ function factory( options, clbk ) {
8282
return createRepo;
8383

8484
/**
85-
* Creates a Github repository.
85+
* Creates a GitHub repository.
8686
*
8787
* @private
8888
* @param {string} name - repository name

lib/node_modules/@stdlib/_tools/github/create-repo/lib/headers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var debug = logger( 'github-create-repo:headers' );
3434
* Returns request headers based on provided options.
3535
*
3636
* @param {Object} opts - provided options
37-
* @param {string} [opts.token] - Github access token
37+
* @param {string} [opts.token] - GitHub access token
3838
* @param {string} [opts.accept] - media type
3939
* @param {string} [opts.useragent] - user agent string
4040
* @returns {Object} request headers

lib/node_modules/@stdlib/_tools/github/create-repo/lib/main.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ var factory = require( './factory.js' );
2626
// MAIN //
2727

2828
/**
29-
* Creates a Github repository.
29+
* Creates a GitHub repository.
3030
*
3131
* @param {string} name - repository name
3232
* @param {Object} opts - function options
33-
* @param {string} opts.token - Github access token
33+
* @param {string} opts.token - GitHub access token
3434
* @param {string} [opts.useragent] - user agent string
3535
* @param {string} [opts.desc=""] - repository description
3636
* @param {string} [opts.homepage=""] - repository homepage

lib/node_modules/@stdlib/_tools/github/create-repo/lib/options.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var debug = logger( 'github-create-repo:options' );
3939
* @param {string} opts.protocol - request protocol
4040
* @param {string} opts.hostname - endpoint hostname
4141
* @param {number} opts.port - endpoint port
42-
* @param {string} [opts.token] - Github access token
42+
* @param {string} [opts.token] - GitHub access token
4343
* @param {string} [opts.accept] - media type
4444
* @param {string} [opts.useragent] - user agent string
4545
* @returns {Object} request options

lib/node_modules/@stdlib/_tools/github/create-repo/lib/validate.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var isURI = require( '@stdlib/assert/is-uri' );
3535
*
3636
* @param {Object} opts - destination object
3737
* @param {Object} options - options to validate
38-
* @param {string} options.token - Github access token
38+
* @param {string} options.token - GitHub access token
3939
* @param {string} [options.useragent] - user agent string
4040
* @param {string} [options.org] - organization name
4141
* @param {string} [options.desc] - repository description

lib/node_modules/@stdlib/_tools/github/create-token/README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# Create Token
2222

23-
> [Create][github-create-token] a Github OAuth access [token][github-token].
23+
> [Create][github-create-token] a GitHub OAuth access [token][github-token].
2424
2525
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
2626

@@ -44,7 +44,7 @@ var createToken = require( '@stdlib/_tools/github/create-token' );
4444

4545
#### createToken( options, clbk )
4646

47-
[Creates][github-create-token] a Github OAuth access [token][github-token].
47+
[Creates][github-create-token] a GitHub OAuth access [token][github-token].
4848

4949
<!-- run-disable -->
5050

@@ -97,18 +97,18 @@ function clbk( error, results, info ) {
9797

9898
The `function` accepts the following `options`:
9999

100-
- **username**: Github username (_required_).
101-
- **password**: Github password (_required_).
100+
- **username**: GitHub username (_required_).
101+
- **password**: GitHub password (_required_).
102102
- **scopes**: list of [scopes][github-scopes] (_required_).
103103
- **note**: a note as to the purpose of the [token][github-token] (_required_).
104-
- **otp**: Github one-time password (2-factor authentication).
104+
- **otp**: GitHub one-time password (2-factor authentication).
105105
- **note_url**: an app URL if authorizing an application.
106106
- **client_id**: a `20` character OAuth app client key for which to create the [token][github-token].
107107
- **client_secret**: a `40` character OAuth app client secret for which to create the [token][github-token].
108108
- **fingerprint**: a unique `string` to distinguish a token from others created for the same client id and user.
109109
- **useragent**: [user agent][github-user-agent] `string`.
110110

111-
The `function` **only** supports basic authentication using a `username` and `password`. To [authenticate][github-oauth2] with Github, set the `username` and `password` options.
111+
The `function` **only** supports basic authentication using a `username` and `password`. To [authenticate][github-oauth2] with GitHub, set the `username` and `password` options.
112112

113113
<!-- run-disable -->
114114

@@ -232,9 +232,9 @@ Options:
232232
-h, --help Print this message.
233233
-V, --version Print the package version.
234234
--lscopes List all possible scopes.
235-
--username username Github username.
236-
--password password Github password.
237-
--otp password Github one-time password.
235+
--username username GitHub username.
236+
--password password GitHub password.
237+
--otp password GitHub one-time password.
238238
-ua, --useragent ua User agent.
239239
--scopes scope1,scope2,... List of scopes.
240240
--note note Token note.

lib/node_modules/@stdlib/_tools/github/create-token/bin/cli

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ function main() {
141141
rl.on( 'SIGINT', onSIGINT );
142142

143143
console.log( '\nPlease enter your GitHub credentials: \n' ); // eslint-disable-line no-console
144-
rl.question( 'Enter Github password: ', onPassword );
144+
rl.question( 'Enter GitHub password: ', onPassword );
145145
}
146146

147147
/**

lib/node_modules/@stdlib/_tools/github/create-token/docs/usage.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Options:
66
-h, --help Print this message.
77
-V, --version Print the package version.
88
--lscopes List all possible scopes.
9-
--username username Github username.
10-
--password password Github password.
11-
--otp password Github one-time password.
9+
--username username GitHub username.
10+
--password password GitHub password.
11+
--otp password GitHub one-time password.
1212
-ua, --useragent ua User agent.
1313
--scopes scope1,scope2,... List of scopes.
1414
--note note Token note.

lib/node_modules/@stdlib/_tools/github/create-token/lib/headers.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ var debug = logger( 'github-create-token:headers' );
3535
* Returns request headers based on provided options.
3636
*
3737
* @param {Object} opts - provided options
38-
* @param {string} opts.username - Github username
39-
* @param {string} opts.password - Github password
40-
* @param {string} [opts.otp] - Github one-time password
38+
* @param {string} opts.username - GitHub username
39+
* @param {string} opts.password - GitHub password
40+
* @param {string} [opts.otp] - GitHub one-time password
4141
* @param {string} [opts.accept] - media type
4242
* @param {string} [opts.useragent] - user agent string
4343
* @returns {Object} request headers

lib/node_modules/@stdlib/_tools/github/create-token/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Create a Github OAuth access token.
22+
* Create a GitHub OAuth access token.
2323
*
2424
* @module @stdlib/_tools/github/create-token
2525
*

lib/node_modules/@stdlib/_tools/github/create-token/lib/main.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ var query = require( './query.js' );
3333
* Creates a token.
3434
*
3535
* @param {Object} options - function options
36-
* @param {string} options.username - Github username
37-
* @param {string} options.password - Github password
36+
* @param {string} options.username - GitHub username
37+
* @param {string} options.password - GitHub password
3838
* @param {StringArray} options.scopes - list of scopes
3939
* @param {string} options.note - note regarding the purpose of the token
40-
* @param {string} [options.otp] - Github one-time password
40+
* @param {string} [options.otp] - GitHub one-time password
4141
* @param {string} [options.note_url] - application URL
4242
* @param {string} [options.client_id] - app OAuth client id
4343
* @param {string} [options.client_secret] - app OAuth client secret

lib/node_modules/@stdlib/_tools/github/create-token/lib/options.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ var debug = logger( 'github-create-token:options' );
3939
* @param {string} opts.protocol - request protocol
4040
* @param {string} opts.hostname - endpoint hostname
4141
* @param {number} opts.port - endpoint port
42-
* @param {string} opts.username - Github username
43-
* @param {string} opts.password - Github password
44-
* @param {string} [opts.otp] - Github one-time password
42+
* @param {string} opts.username - GitHub username
43+
* @param {string} opts.password - GitHub password
44+
* @param {string} [opts.otp] - GitHub one-time password
4545
* @param {string} [opts.accept] - media type
4646
* @param {string} [opts.useragent] - user agent string
4747
* @returns {Object} request options

lib/node_modules/@stdlib/_tools/github/create-token/lib/validate.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ var isURI = require( '@stdlib/assert/is-uri' );
3434
*
3535
* @param {Object} opts - destination object
3636
* @param {Object} options - options to validate
37-
* @param {string} options.username - Github username
38-
* @param {string} options.password - Github password
37+
* @param {string} options.username - GitHub username
38+
* @param {string} options.password - GitHub password
3939
* @param {StringArray} options.scopes - list of scopes
4040
* @param {string} options.note - note regarding the purpose of the token
41-
* @param {string} [options.otp] - Github one-time password
41+
* @param {string} [options.otp] - GitHub one-time password
4242
* @param {string} [options.note_url] - application URL
4343
* @param {string} [options.client_id] - app OAuth client id
4444
* @param {string} [options.client_secret] - app OAuth client secret

lib/node_modules/@stdlib/_tools/github/create-token/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/_tools/github/create-token",
33
"version": "0.0.0",
4-
"description": "Create a Github OAuth access token.",
4+
"description": "Create a GitHub OAuth access token.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

lib/node_modules/@stdlib/_tools/github/delete-token/README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# Delete Token
2222

23-
> [Delete][github-delete-token] a Github OAuth access [token][github-token].
23+
> [Delete][github-delete-token] a GitHub OAuth access [token][github-token].
2424
2525
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
2626

@@ -44,7 +44,7 @@ var deleteToken = require( '@stdlib/_tools/github/delete-token' );
4444

4545
#### deleteToken( id, options, clbk )
4646

47-
[Deletes][github-delete-token] a Github OAuth access [token][github-token].
47+
[Deletes][github-delete-token] a GitHub OAuth access [token][github-token].
4848

4949
<!-- run-disable -->
5050

@@ -74,12 +74,12 @@ function clbk( error, info ) {
7474

7575
The `function` accepts the following `options`:
7676

77-
- **username**: Github username (_required_).
78-
- **password**: Github password (_required_).
79-
- **otp**: Github one-time password (2-factor authentication).
77+
- **username**: GitHub username (_required_).
78+
- **password**: GitHub password (_required_).
79+
- **otp**: GitHub one-time password (2-factor authentication).
8080
- **useragent**: [user agent][github-user-agent] `string`.
8181

82-
The `function` **only** supports basic authentication using a `username` and `password`. To [authenticate][github-oauth2] with Github, set the `username` and `password` options.
82+
The `function` **only** supports basic authentication using a `username` and `password`. To [authenticate][github-oauth2] with GitHub, set the `username` and `password` options.
8383

8484
<!-- run-disable -->
8585

@@ -196,9 +196,9 @@ Options:
196196

197197
-h, --help Print this message.
198198
-V, --version Print the package version.
199-
--username username Github username.
200-
--password password Github password.
201-
--otp password Github one-time password.
199+
--username username GitHub username.
200+
--password password GitHub password.
201+
--otp password GitHub one-time password.
202202
-ua, --useragent ua User agent.
203203
```
204204

lib/node_modules/@stdlib/_tools/github/delete-token/bin/cli

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ function main() {
125125
rl.on( 'SIGINT', onSIGINT );
126126

127127
console.log( '\nPlease enter your GitHub credentials: \n' ); // eslint-disable-line no-console
128-
rl.question( 'Enter Github password: ', onPassword );
128+
rl.question( 'Enter GitHub password: ', onPassword );
129129
}
130130

131131
/**

lib/node_modules/@stdlib/_tools/github/delete-token/docs/usage.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Options:
55

66
-h, --help Print this message.
77
-V, --version Print the package version.
8-
--username username Github username.
9-
--password password Github password.
10-
--otp password Github one-time password.
8+
--username username GitHub username.
9+
--password password GitHub password.
10+
--otp password GitHub one-time password.
1111
-ua, --useragent ua User agent.
1212

lib/node_modules/@stdlib/_tools/github/delete-token/lib/headers.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ var debug = logger( 'github-delete-token:headers' );
3535
* Returns request headers based on provided options.
3636
*
3737
* @param {Object} opts - provided options
38-
* @param {string} opts.username - Github username
39-
* @param {string} opts.password - Github password
40-
* @param {string} [opts.otp] - Github one-time password
38+
* @param {string} opts.username - GitHub username
39+
* @param {string} opts.password - GitHub password
40+
* @param {string} [opts.otp] - GitHub one-time password
4141
* @param {string} [opts.accept] - media type
4242
* @param {string} [opts.useragent] - user agent string
4343
* @returns {Object} request headers

lib/node_modules/@stdlib/_tools/github/delete-token/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Delete a Github OAuth access token.
22+
* Delete a GitHub OAuth access token.
2323
*
2424
* @module @stdlib/_tools/github/delete-token
2525
*

0 commit comments

Comments
 (0)