From c7e7e1d884d3bb241ea6448f72a989434c2a35ec Mon Sep 17 00:00:00 2001 From: Alan Gabbianelli Date: Thu, 25 Jan 2024 08:35:11 +0000 Subject: [PATCH] Fix typos in README.md --- README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 48b4b0fb..81820354 100644 --- a/README.md +++ b/README.md @@ -204,17 +204,17 @@ following rules are enabled by default: * `aws_cli` – fixes misspelled commands like `aws dynamdb scan`; * `az_cli` – fixes misspelled commands like `az providers`; * `cargo` – runs `cargo build` instead of `cargo`; -* `cargo_no_command` – fixes wrongs commands like `cargo buid`; +* `cargo_no_command` – fixes wrong commands like `cargo buid`; * `cat_dir` – replaces `cat` with `ls` when you try to `cat` a directory; -* `cd_correction` – spellchecks and correct failed cd commands; +* `cd_correction` – spellchecks and corrects failed cd commands; * `cd_cs` – changes `cs` to `cd`; * `cd_mkdir` – creates directories before cd'ing into them; * `cd_parent` – changes `cd..` to `cd ..`; -* `chmod_x` – add execution bit; -* `choco_install` – append common suffixes for chocolatey packages; +* `chmod_x` – adds execution bit; +* `choco_install` – appends common suffixes for chocolatey packages; * `composer_not_command` – fixes composer command name; * `conda_mistype` – fixes conda commands; -* `cp_create_destination` – creates a new directory when you attempt to `cp` or `mv` to a non existent one +* `cp_create_destination` – creates a new directory when you attempt to `cp` or `mv` to a non-existent one * `cp_omitting_directory` – adds `-a` when you `cp` directory; * `cpp11` – adds missing `-std=c++11` to `g++` or `clang++`; * `dirty_untar` – fixes `tar x` command that untarred in the current directory; @@ -225,7 +225,7 @@ following rules are enabled by default: * `docker_not_command` – fixes wrong docker commands like `docker tags`; * `docker_image_being_used_by_container` ‐ removes the container that is using the image before removing the image; * `dry` – fixes repetitions like `git git push`; -* `fab_command_not_found` – fix misspelled fabric commands; +* `fab_command_not_found` – fixes misspelled fabric commands; * `fix_alt_space` – replaces Alt+Space with Space character; * `fix_file` – opens a file with an error in your `$EDITOR`; * `gem_unknown_command` – fixes wrong `gem` commands; @@ -260,10 +260,10 @@ following rules are enabled by default: * `git_push` – adds `--set-upstream origin $branch` to previous failed `git push`; * `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_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; * `git_remote_delete` – replaces `git remote delete remote_name` with `git remote remove remote_name`; -* `git_rm_local_modifications` – adds `-f` or `--cached` when you try to `rm` a locally modified file; +* `git_rm_local_modifications` – adds `-f` or `--cached` when you try to `rm` a locally modified file; * `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; @@ -281,7 +281,7 @@ following rules are enabled by default: * `grunt_task_not_found` – fixes misspelled `grunt` commands; * `gulp_not_task` – fixes misspelled `gulp` tasks; * `has_exists_script` – prepends `./` when script/binary exists; -* `heroku_multiple_apps` – add `--app ` to `heroku` commands like `heroku pg`; +* `heroku_multiple_apps` – adds `--app ` to `heroku` commands like `heroku pg`; * `heroku_not_command` – fixes wrong `heroku` commands like `heroku log`; * `history` – tries to replace command with the most similar command from history; * `hostscli` – tries to fix `hostscli` usage; @@ -307,7 +307,7 @@ following rules are enabled by default: * `no_command` – fixes wrong console commands, for example `vom/vim`; * `no_such_file` – creates missing directories with `mv` and `cp` commands; * `omnienv_no_such_command` – fixes wrong commands for `goenv`, `nodenv`, `pyenv` and `rbenv` (eg.: `pyenv isntall` or `goenv list`); -* `open` – either prepends `http://` to address passed to `open` or create a new file or directory and passes it to `open`; +* `open` – either prepends `http://` to address passed to `open` or creates a new file or directory and passes it to `open`; * `pip_install` – fixes permission issues with `pip install` commands by adding `--user` or prepending `sudo` if necessary; * `pip_unknown_command` – fixes wrong `pip` commands, for example `pip instatl/pip install`; * `php_s` – replaces `-s` by `-S` when trying to run a local php server; @@ -320,8 +320,8 @@ following rules are enabled by default: * `path_from_history` – replaces not found path with a similar absolute path from history; * `rails_migrations_pending` – runs pending migrations; * `react_native_command_unrecognized` – fixes unrecognized `react-native` commands; -* `remove_shell_prompt_literal` – remove leading shell prompt symbol `$`, common when copying commands from documentations; -* `remove_trailing_cedilla` – remove trailing cedillas `ç`, a common typo for European keyboard layouts; +* `remove_shell_prompt_literal` – removes leading shell prompt symbol `$`, common when copying commands from documentations; +* `remove_trailing_cedilla` – removes trailing cedillas `ç`, a common typo for European keyboard layouts; * `rm_dir` – adds `-rf` when you try to remove a directory; * `scm_correction` – corrects wrong scm like `hg log` to `git log`; * `sed_unterminated_s` – adds missing '/' to `sed`'s `s` commands; @@ -331,7 +331,7 @@ following rules are enabled by default: * `sudo_command_from_user_path` – runs commands from users `$PATH` with `sudo`; * `switch_lang` – switches command from your local layout to en; * `systemctl` – correctly orders parameters of confusing `systemctl`; -* `terraform_init.py` – run `terraform init` before plan or apply; +* `terraform_init.py` – runs `terraform init` before plan or apply; * `terraform_no_command.py` – fixes unrecognized `terraform` commands; * `test.py` – runs `pytest` instead of `test.py`; * `touch` – creates missing directories before "touching";