aboutsummaryrefslogtreecommitdiffhomepage
path: root/share
diff options
context:
space:
mode:
authorGravatar Mariusz Smykuła <mariuszs@gmail.com>2013-06-17 19:26:21 +0200
committerGravatar Mariusz Smykuła <mariuszs@gmail.com>2013-06-17 19:26:21 +0200
commit9b9ce3155088f105b98ee77d3ff3897407044559 (patch)
treeebec5fc95e7593283ac391dcba485f95f5dc796b /share
parent292908c00a166d2989efc1d1508a067bb49b88ca (diff)
Fix variable name
Diffstat (limited to 'share')
-rw-r--r--share/functions/__fish_git_prompt.fish2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/functions/__fish_git_prompt.fish b/share/functions/__fish_git_prompt.fish
index 5c528bea..407edc48 100644
--- a/share/functions/__fish_git_prompt.fish
+++ b/share/functions/__fish_git_prompt.fish
@@ -199,7 +199,7 @@ function __fish_git_prompt_show_upstream --description "Helper function for __fi
case "* 0" # behind upstream
echo " $___fish_git_prompt_char_upstream_behind$behind"
case '*' # diverged from upstream
- echo " $__fish_git_prompt_char_upstream_diverged$ahead-$behind"
+ echo " $___fish_git_prompt_char_upstream_diverged$ahead-$behind"
end
end
end