Skip to content

Commit

Permalink
✏️ Fix typos (#895)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccoVeille authored Aug 11, 2022
1 parent 65f37db commit 9b44d08
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Run `gitmoji -g` to setup some gitmoji-cli preferences.

#### Options

- **Automatic git add**: Enable or disable the automatic `git add .` everytime you use the commit command.
- **Automatic git add**: Enable or disable the automatic `git add .` every time you use the commit command.
- **Emoji format**: Switch between the emoji format.
- **Scope prompt**: Enable or disable [conventional commits scope prompt](https://www.conventionalcommits.org/en/v1.0.0/#summary).
- **Signed commits**: Enable or disable [signed commits with GPG](https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/signing-commits).
Expand Down
2 changes: 1 addition & 1 deletion src/commands/commit/withClient/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const withClient = async (answers: Answers): Promise<void> => {
console.error(
chalk.red(
'\n',
'Oops! An error ocurred. There is likely additional logging output above.\n',
'Oops! An error occurred. There is likely additional logging output above.\n',
'You can run the same commit with this command:\n'
),
'\t',
Expand Down
2 changes: 1 addition & 1 deletion test/commands/commit.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ describe('commit command', () => {
expect(consoleError).toHaveBeenCalledWith(
chalk.red(
'\n',
'Oops! An error ocurred. There is likely additional logging output above.\n',
'Oops! An error occurred. There is likely additional logging output above.\n',
'You can run the same commit with this command:\n'
),
'\t',
Expand Down
2 changes: 1 addition & 1 deletion test/utils/buildFetchOptions.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ describe('buildFetchOptions', () => {
})
})

describe('when proxy is detected from the enviroment', () => {
describe('when proxy is detected from the environment', () => {
const OLD_ENV = process.env

beforeEach(() => {
Expand Down

0 comments on commit 9b44d08

Please sign in to comment.