From 251f2c9547f56ded0368d0b4d3669fdf0bff35e9 Mon Sep 17 00:00:00 2001 From: RotrixX Date: Sat, 22 Apr 2023 16:44:41 +0200 Subject: [PATCH] fix: fixed typo in choice selection --- Applications/Link Shortener and Extractor/source-code.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Applications/Link Shortener and Extractor/source-code.py b/Applications/Link Shortener and Extractor/source-code.py index 8ba083f..b6febb9 100644 --- a/Applications/Link Shortener and Extractor/source-code.py +++ b/Applications/Link Shortener and Extractor/source-code.py @@ -22,11 +22,11 @@ def link_opener(link): num = input("Enter your choice ...\n" "1. Type 1 for shortening link\n" - "2. Type 2 for extrcting real link from a shorten link\n") + "2. Type 2 for extracting real link from a shorten link\n") link = input("Enter the link: ") if (num == '1') : link_shortener(link) else : - link_opener(link) \ No newline at end of file + link_opener(link)