Fix grammar on error message

pull/66/head
Mark Szymanski 2011-06-30 08:30:46 -05:00
parent f6950f9f7b
commit 1a96945885
1 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ EOF
function dock-switch() { function dock-switch() {
if [ $(uname) = "Darwin" ]; then if [ $(uname) = "Darwin" ]; then
if [ $1 = 3d ] ; then if [ $1 = 3d ] ; then
defaults write com.apple.dock no-glass -boolean NO defaults write com.apple.dock no-glass -boolean NO
killall Dock killall Dock
@ -28,10 +28,10 @@ function dock-switch() {
else else
echo "usage:" echo "usage:"
echo "dock-switch 2d" echo "dock-switch 2d"
echo "dock-switch 3d." echo "dock-switch 3d."
fi fi
else else
echo "sorry. you're currently not using os x" echo "Sorry, this only works on Mac OS X"
fi fi
} }