Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(examples): fixing a documentation typo (PDE-1821) #296

Merged
merged 1 commit into from
Dec 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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