summaryrefslogtreecommitdiff
path: root/wk6/pset/sentimental-readability/readability.py
diff options
context:
space:
mode:
Diffstat (limited to 'wk6/pset/sentimental-readability/readability.py')
-rw-r--r--wk6/pset/sentimental-readability/readability.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wk6/pset/sentimental-readability/readability.py b/wk6/pset/sentimental-readability/readability.py
index d8b79fd..f2c8603 100644
--- a/wk6/pset/sentimental-readability/readability.py
+++ b/wk6/pset/sentimental-readability/readability.py
@@ -2,8 +2,8 @@ from cs50 import get_string
text = get_string("Text: ")
-s = 0.0 # track how many sentences there are
-w = 1.0 # track how many words there are
+s = 0.0 # sentences
+w = 1.0 # words
l = 0.0 # letters
c = ''