diff --git a/BoardGame-CLI/snakeLadder.py b/BoardGame-CLI/snakeLadder.py index fd06dd64527..7b434cca5d7 100644 --- a/BoardGame-CLI/snakeLadder.py +++ b/BoardGame-CLI/snakeLadder.py @@ -3,7 +3,7 @@ # Taking players data players = {} # stores players name their locations isReady = {} -current_loc = 1 # vaiable for iterating location +current_loc = 1 # variable for iterating location imp = True @@ -23,7 +23,7 @@ def player_input(): players[name] = current_loc isReady[name] = False x = False - play() # play funtion call + play() # play function call else: print("Number of player cannot be zero") @@ -88,7 +88,7 @@ def play(): print(f"you are at position {players[i]}") elif n == 2: - players = {} # stores player ans their locations + players = {} # stores player and their locations isReady = {} current_loc = 1 # reset starting location to 1 player_input() diff --git a/bank_managment_system/QTFrontend.py b/bank_managment_system/QTFrontend.py index 2f67009e322..f1b5523f789 100644 --- a/bank_managment_system/QTFrontend.py +++ b/bank_managment_system/QTFrontend.py @@ -1171,7 +1171,7 @@ def update_employee_data(name, password, salary, position, name_to_update): ) backend.conn.commit() show_popup_message( - stacked_widget, "Employee Upadate successfully", UPDATE_EMPLOYEE_PAGE2 + stacked_widget, "Employee Update successfully", UPDATE_EMPLOYEE_PAGE2 ) except: