about summary refs log tree commit diff
path: root/configs/shared/zsh/functions.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'configs/shared/zsh/functions.zsh')
-rw-r--r--configs/shared/zsh/functions.zsh4
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/shared/zsh/functions.zsh b/configs/shared/zsh/functions.zsh
index 36559d2a2ddc..12825102ae95 100644
--- a/configs/shared/zsh/functions.zsh
+++ b/configs/shared/zsh/functions.zsh
@@ -17,7 +17,7 @@ fv() {
   [[ -n "$file" ]] && vim "$file"
 }
 
-tb() {
+tbz() {
   # Toggle between blaze-bin and your source.
   # Useful if you like to cd into the dir where your source lives.
   if [[ $PWD =~ '(.*)/blaze-bin(.*)' ]]; then
@@ -28,7 +28,7 @@ tb() {
 }
 
 tj() {
-  # Toggle between the source dir and test dir.
+  # Toggle between the source dir and test dir in a Java project.
   if [[ $PWD =~ '(.*)/javatests(.*)' ]]; then
     cd "${match[1]}/java${match[2]}"
   else