Skip to content

Commit 9b44d08

Browse files
authored
✏️ Fix typos (#895)
1 parent 65f37db commit 9b44d08

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Run `gitmoji -g` to setup some gitmoji-cli preferences.
130130

131131
#### Options
132132

133-
- **Automatic git add**: Enable or disable the automatic `git add .` everytime you use the commit command.
133+
- **Automatic git add**: Enable or disable the automatic `git add .` every time you use the commit command.
134134
- **Emoji format**: Switch between the emoji format.
135135
- **Scope prompt**: Enable or disable [conventional commits scope prompt](https://www.conventionalcommits.org/en/v1.0.0/#summary).
136136
- **Signed commits**: Enable or disable [signed commits with GPG](https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/signing-commits).

src/commands/commit/withClient/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const withClient = async (answers: Answers): Promise<void> => {
3838
console.error(
3939
chalk.red(
4040
'\n',
41-
'Oops! An error ocurred. There is likely additional logging output above.\n',
41+
'Oops! An error occurred. There is likely additional logging output above.\n',
4242
'You can run the same commit with this command:\n'
4343
),
4444
'\t',

test/commands/commit.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ describe('commit command', () => {
147147
expect(consoleError).toHaveBeenCalledWith(
148148
chalk.red(
149149
'\n',
150-
'Oops! An error ocurred. There is likely additional logging output above.\n',
150+
'Oops! An error occurred. There is likely additional logging output above.\n',
151151
'You can run the same commit with this command:\n'
152152
),
153153
'\t',

test/utils/buildFetchOptions.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ describe('buildFetchOptions', () => {
8787
})
8888
})
8989

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

9393
beforeEach(() => {

0 commit comments

Comments
 (0)