fix typo in comments and README files (#230)

This commit is contained in:
ccoVeille 2022-08-10 04:07:59 +02:00 committed by GitHub
parent 85ccdd3f80
commit f6040b21a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View file

@ -10,7 +10,7 @@
## Description
<!-- Please include a summary of the change(and the related issue if any). Please also include relevant motivation and context when necessary. -->
<!-- Please include a summary of the change (and the related issue, if any). Please also include relevant motivation and context when necessary. -->
## Type of change

View file

@ -3,7 +3,7 @@
name: ci
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
# events, but only for the master branch
on: [push, pull_request]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel

View file

@ -152,7 +152,7 @@ forgit_reset_head=grh
forgit_ignore=gi
forgit_checkout_file=gcf
forgit_checkout_branch=gcb
forgit_branch_delet=gbd
forgit_branch_delete=gbd
forgit_checkout_tag=gct
forgit_checkout_commit=gco
forgit_revert_commit=grc

View file

@ -30,7 +30,7 @@ function forgit::previous_commit
end
end
# extract the first git sha occuring in the input and strip trailing newline
# extract the first git sha occurring in the input and strip trailing newline
set -g forgit_extract_sha "grep -Eo '[a-f0-9]+' | head -1 | tr -d '[:space:]'"
set -g forgit_pager "$FORGIT_PAGER"

View file

@ -18,7 +18,7 @@ forgit::previous_commit() {
# optional render emoji characters (https://github.com/wfxr/emoji-cli)
hash emojify &>/dev/null && forgit_emojify='|emojify'
# extract the first git sha occuring in the input and strip trailing newline
# extract the first git sha occurring in the input and strip trailing newline
forgit_extract_sha="grep -Eo '[a-f0-9]+' | head -1 | tr -d '[:space:]'"
forgit_pager=${FORGIT_PAGER:-$(git config core.pager || echo 'cat')}