Skip to content

Commit

Permalink
Fixing a documentation typo (#296)
Browse files Browse the repository at this point in the history
`whenver` to `whenever`
  • Loading branch information
ChrisThompsonTLDR committed Dec 4, 2020
1 parent f5ca863 commit 75111f8
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion example-apps/babel/src/authentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Authentication = {
type: 'basic',

// The test method allows Zapier to verify that the credentials a user provides are valid. We'll execute this
// method whenver a user connects their account for the first time.
// method whenever a user connects their account for the first time.
test,
// assuming "username" is a key returned from the test
connectionLabel: '{{username}}',
Expand Down
2 changes: 1 addition & 1 deletion example-apps/basic-auth/authentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ module.exports = {
fields: [],

// The test method allows Zapier to verify that the credentials a user provides
// are valid. We'll execute this method whenver a user connects their account for
// are valid. We'll execute this method whenever a user connects their account for
// the first time.
test,

Expand Down
2 changes: 1 addition & 1 deletion example-apps/custom-auth/authentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ module.exports = {
fields: [{ key: 'apiKey', label: 'API Key', required: true }],

// The test method allows Zapier to verify that the credentials a user provides
// are valid. We'll execute this method whenver a user connects their account for
// are valid. We'll execute this method whenever a user connects their account for
// the first time.
test,

Expand Down
2 changes: 1 addition & 1 deletion example-apps/digest-auth/authentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = {
fields: [],

// The test method allows Zapier to verify that the credentials a user provides
// are valid. We'll execute this method whenver a user connects their account for
// are valid. We'll execute this method whenever a user connects their account for
// the first time.
test,

Expand Down
2 changes: 1 addition & 1 deletion example-apps/oauth1-trello/authentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ module.exports = {
fields: [],

// The test method allows Zapier to verify that the credentials a user provides
// are valid. We'll execute this method whenver a user connects their account for
// are valid. We'll execute this method whenever a user connects their account for
// the first time.
test,

Expand Down
2 changes: 1 addition & 1 deletion example-apps/oauth2/authentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ module.exports = {
fields: [],

// The test method allows Zapier to verify that the credentials a user provides
// are valid. We'll execute this method whenver a user connects their account for
// are valid. We'll execute this method whenever a user connects their account for
// the first time.
test,

Expand Down
2 changes: 1 addition & 1 deletion example-apps/session-auth/authentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ module.exports = {
],

// The test method allows Zapier to verify that the credentials a user provides
// are valid. We'll execute this method whenver a user connects their account for
// are valid. We'll execute this method whenever a user connects their account for
// the first time.
test,

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/utils/auth-files-codegen.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const authFileExport = (
),
objProperty('fields', arr(...authFields)),
comment(
"The test method allows Zapier to verify that the credentials a user provides are valid. We'll execute this method whenver a user connects their account for the first time."
"The test method allows Zapier to verify that the credentials a user provides are valid. We'll execute this method whenever a user connects their account for the first time."
),
test,
comment(
Expand Down

0 comments on commit 75111f8

Please sign in to comment.