From 8a6980d2868c93da33672dc08bdee9de93f89f7b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= <y0rune@aol.com>
Date: Sun, 6 Mar 2022 10:44:13 +0100
Subject: [PATCH] git-delete-branch: Renamed the functions in the case

---
 .local/bin/git-delete-branch | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.local/bin/git-delete-branch b/.local/bin/git-delete-branch
index 0eae1d7..edfd49d 100755
--- a/.local/bin/git-delete-branch
+++ b/.local/bin/git-delete-branch
@@ -20,8 +20,8 @@ while true; do
     read -p "Remove locally / remote / both [L/R/B]: " CHOOSE
     case $CHOOSE in
         [Bb]* ) delete_local_branch "$BRANCH" && delete_remote_branch "$BRANCH" ;;
-        [Ll]* ) delete_local_BRANCH "$BRANCH";;
-        [Rr]* ) delete_remote_BRANCH "$BRANCH";;
+        [Ll]* ) delete_local_branch "$BRANCH";;
+        [Rr]* ) delete_remote_branch "$BRANCH";;
         * ) echo "Please write good answer";;
     esac
 done