We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f89f53e commit 48ff282Copy full SHA for 48ff282
blog-reading-time.py
@@ -72,7 +72,7 @@ def estimatedReadingTime(words):
72
print("\nWords : " + str(words) + "\nCode copied in Clipboard!\n")
73
74
75
-#if no command line arguments are passed, the script loads data from clipboard
+#if no command line argument is passed, the script loads data from clipboard
76
if len(sys.argv) > 1:
77
filename = sys.argv[1]
78
@@ -87,7 +87,7 @@ def estimatedReadingTime(words):
87
countCharacters(fileData)
88
89
else:
90
- #loading number of words from data in clipboard
+ #loading data from clipboard
91
fileData = pyperclip.paste()
92
93
if fileData == '':
0 commit comments