From a06d6bf160a6dc39ed21ab213b2e10fffa1f4df9 Mon Sep 17 00:00:00 2001 From: Elisha Hollander Date: Mon, 3 May 2021 00:10:20 +0300 Subject: [PATCH 1/2] Fix grammar and spelling errors --- README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 4f396ce95..3339526e5 100644 --- a/README.md +++ b/README.md @@ -241,9 +241,9 @@ following rules are enabled by default: * `git_not_command` – fixes wrong git commands like `git brnch`; * `git_pull` – sets upstream before executing previous `git pull`; * `git_pull_clone` – clones instead of pulling when the repo does not exist; -* `git_pull_uncommitted_changes` – stashes changes before pulling and pops them afterwards; +* `git_pull_uncommitted_changes` – stashes changes before pulling and pops them afterward; * `git_push` – adds `--set-upstream origin $branch` to previous failed `git push`; -* `git_push_different_branch_names` – fixes pushes when local brach name does not match remote branch name; +* `git_push_different_branch_names` – fixes pushes when local branch name does not match remote branch name; * `git_push_pull` – runs `git pull` when `push` was rejected; * `git_push_without_commits` – Creates an initial commit if you forget and only `git add .`, when setting up a new project; * `git_rebase_no_changes` – runs `git rebase --skip` instead of `git rebase --continue` when there are no changes; @@ -268,7 +268,7 @@ following rules are enabled by default: * `has_exists_script` – prepends `./` when script/binary exists; * `heroku_multiple_apps` – add `--app ` to `heroku` commands like `heroku pg`; * `heroku_not_command` – fixes wrong `heroku` commands like `heroku log`; -* `history` – tries to replace command with most similar command from history; +* `history` – tries to replace command with the most similar command from history; * `hostscli` – tries to fix `hostscli` usage; * `ifconfig_device_not_found` – fixes wrong device names like `wlan0` to `wlp2s0`; * `java` – removes `.java` extension when running Java programs; @@ -283,7 +283,7 @@ following rules are enabled by default: * `man_no_space` – fixes man commands without spaces, for example `mandiff`; * `mercurial` – fixes wrong `hg` commands; * `missing_space_before_subcommand` – fixes command with missing space like `npminstall`; -* `mkdir_p` – adds `-p` when you try to create a directory without parent; +* `mkdir_p` – adds `-p` when you try to create a directory without a parent; * `mvn_no_command` – adds `clean package` to `mvn`; * `mvn_unknown_lifecycle_phase` – fixes misspelled life cycle phases with `mvn`; * `npm_missing_script` – fixes `npm` custom script name in `npm run-script