Skip to content

Commit

Permalink
Fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
carhartl committed Dec 1, 2019
1 parent 7a6c6d9 commit f8f5a0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pure.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -394,14 +394,14 @@ prompt_pure_async_refresh() {

if [[ -z $prompt_pure_git_fetch_pattern ]]; then
# We set the pattern here to avoid redoing the pattern check until the
# working three has changed. Pull and fetch are always valid patterns.
# working tree has changed. Pull and fetch are always valid patterns.
typeset -g prompt_pure_git_fetch_pattern="pull|fetch"
async_job "prompt_pure" prompt_pure_async_git_aliases
fi

async_job "prompt_pure" prompt_pure_async_git_arrows

# Do not preform `git fetch` if it is disabled or in home folder.
# Do not perform `git fetch` if it is disabled or in home folder.
if (( ${PURE_GIT_PULL:-1} )) && [[ $prompt_pure_vcs_info[top] != $HOME ]]; then
# Tell the async worker to do a `git fetch`.
async_job "prompt_pure" prompt_pure_async_git_fetch
Expand Down

0 comments on commit f8f5a0d

Please sign in to comment.