Skip to content

Commit 6019303

Browse files
committed
Updated: fixed some spelling mistakes
1 parent 93231c7 commit 6019303

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def menu():
66
print(Fore.CYAN + "Enter the Relevant Number and Enter to Make the Calculation You Want " + Fore.RESET)
77
print(Fore.GREEN + "[1]-> Central Tandency Calculator" + Fore.RESET)
88
print(Fore.BLUE + "[2]-> Average Deviation Calculator" + Fore.RESET)
9-
print(Fore.MAGENTA + "[3]-> Z-Skor Confidence Level Calculator" + Fore.RESET)
9+
print(Fore.MAGENTA + "[3]-> Z-Score Confidence Level Calculator" + Fore.RESET)
1010
print(Fore.RED + "[4]-> Normal T-Test Value and Confidence Level Calculator" + Fore.RESET)
1111
print(Fore.LIGHTRED_EX + "[5]-> Paired T-Test Value and Confidence Level Calculator" + Fore.RESET)
1212
print(Fore.YELLOW + "[6]-> Chi-Square Test Calculator" + Fore.RESET)
@@ -24,7 +24,7 @@ def menu():
2424
elif selection == "2":
2525
subprocess.run(["python", "average-deviation.py"])
2626
elif selection == "3":
27-
subprocess.run(["python", "z-skor-confidence-level.py"])
27+
subprocess.run(["python", "z-score-confidence-level.py"])
2828
elif selection == "4":
2929
subprocess.run(["python", "normal-t-confidence-level.py"])
3030
elif selection == "5":

0 commit comments

Comments
 (0)