From 4a6dac5230abe7168a0aa49a669fe7c803601233 Mon Sep 17 00:00:00 2001 From: Piper Date: Tue, 29 May 2018 09:40:38 -0700 Subject: [PATCH] fix: personnal -> personal --- lib/definitions/errors.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/definitions/errors.js b/lib/definitions/errors.js index 0571634c..29010e8d 100644 --- a/lib/definitions/errors.js +++ b/lib/definitions/errors.js @@ -84,16 +84,16 @@ Please make sure the GitHub user associated with the token is an [owner](https:/ message: 'Invalid GitHub token.', details: `The [GitHub token](${linkify( 'README.md#github-authentication' - )}) configured in the \`GH_TOKEN\` or \`GITHUB_TOKEN\` environment variable must be a valid [personnal token](https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line) allowing to push to the repository ${owner}/${repo}. + )}) configured in the \`GH_TOKEN\` or \`GITHUB_TOKEN\` environment variable must be a valid [personal token](https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line) allowing to push to the repository ${owner}/${repo}. -Please make sure to set the \`GH_TOKEN\` or \`GITHUB_TOKEN\` environment variable in your CI with the exact value of the GitHub personnal token.`, +Please make sure to set the \`GH_TOKEN\` or \`GITHUB_TOKEN\` environment variable in your CI with the exact value of the GitHub personal token.`, }), ENOGHTOKEN: ({owner, repo}) => ({ message: 'No GitHub token specified.', - details: `A [GitHub personnal token](${linkify( + details: `A [GitHub personal token](${linkify( 'README.md#github-authentication' )}) must be created and set in the \`GH_TOKEN\` or \`GITHUB_TOKEN\` environment variable on your CI environment. -Please make sure to create a [GitHub personnal token](https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line) and to set it in the \`GH_TOKEN\` or \`GITHUB_TOKEN\` environment variable on your CI environment. The token must allow to push to the repository ${owner}/${repo}.`, +Please make sure to create a [GitHub personal token](https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line) and to set it in the \`GH_TOKEN\` or \`GITHUB_TOKEN\` environment variable on your CI environment. The token must allow to push to the repository ${owner}/${repo}.`, }), };