aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorZhuang Ya2013-01-11 14:34:57 +0800
committerAdam Vandenberg2013-01-11 09:19:18 -0800
commit5ff71520aeaf386308e8af041075bd80cbb9b041 (patch)
tree7ad7c78a23d791ebe321c5e4e7f2a0904601e998 /Library/Formula
parentbc852f40a846661cd0b57a4372dc96f06ab3aa1f (diff)
downloadhomebrew-5ff71520aeaf386308e8af041075bd80cbb9b041.tar.bz2
z.rb: append the missing 'h', correct the indent.
Closes #16998. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/z.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/z.rb b/Library/Formula/z.rb
index e0eeac883..31c97e6c9 100644
--- a/Library/Formula/z.rb
+++ b/Library/Formula/z.rb
@@ -14,20 +14,20 @@ class Z < Formula
def caveats; <<-EOS.undent
For Bash or Zsh, put something like this in your $HOME/.bashrc or $HOME/.zshrc:
- . `brew --prefix`/etc/profile.d/z.s
+ . `brew --prefix`/etc/profile.d/z.sh
ZSH USERS BACKWARD COMPATIBILITY WARNING:
z now handles 'precmd' set up for zsh. z (<=1.3) users using zsh should
remove the precmd function that was described in the installation
instructions for previous versions.
- In short, this:
+ In short, this:
. /path/to/z.sh
function precmd () {
_z --add "$(pwd -P)"
}
- should now be:
+ should now be:
. `brew --prefix`/etc/profile.d/z.sh
EOS
end