From fdea32b47d4b941fce7a9d538d00c1484e31feb5 Mon Sep 17 00:00:00 2001 From: boonwj <3538312+boonwj@users.noreply.github.com> Date: Sat, 2 Nov 2019 18:07:32 +0000 Subject: [PATCH] Fix typos in README.md (#997) * Fix typos in README.md * Fix another typo - lifecycle to life cycle --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 45c51dbf..1c8fe389 100644 --- a/README.md +++ b/README.md @@ -228,7 +228,7 @@ following rules are enabled by default: * `git_rm_recursive` – adds `-r` when you try to `rm` a directory; * `git_rm_staged` – adds `-f` or `--cached` when you try to `rm` a file with staged changes * `git_rebase_merge_dir` – offers `git rebase (--continue | --abort | --skip)` or removing the `.git/rebase-merge` dir when a rebase is in progress; -* `git_remote_seturl_add` – runs `git remote add` when `git remote set_url` on nonexistant remote; +* `git_remote_seturl_add` – runs `git remote add` when `git remote set_url` on nonexistent remote; * `git_stash` – stashes your local modifications before rebasing or switching branch; * `git_stash_pop` – adds your local modifications before popping stash, then resets; * `git_tag_force` – adds `--force` to `git tag ` when the tag already exists; @@ -261,7 +261,7 @@ following rules are enabled by default: * `missing_space_before_subcommand` – fixes command with missing space like `npminstall`; * `mkdir_p` – adds `-p` when you try to create a directory without parent; * `mvn_no_command` – adds `clean package` to `mvn`; -* `mvn_unknown_lifecycle_phase` – fixes misspelled lifecycle phases with `mvn`; +* `mvn_unknown_lifecycle_phase` – fixes misspelled life cycle phases with `mvn`; * `npm_missing_script` – fixes `npm` custom script name in `npm run-script