From adc29f814ab29a26d98424b0f489e1e6f83b6ebd Mon Sep 17 00:00:00 2001 From: Crista Lopes Date: Sat, 8 Mar 2014 14:14:57 -0800 Subject: [PATCH] Typo in comment --- 02-go-forth/tf-02.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-go-forth/tf-02.py b/02-go-forth/tf-02.py index cd0c67e..0a1f605 100755 --- a/02-go-forth/tf-02.py +++ b/02-go-forth/tf-02.py @@ -87,7 +87,7 @@ def frequencies(): # Push the result onto the stack stack.append(heap['word_freqs']) - del heap['word_freqs'] # We dont need this variable anymore + del heap['word_freqs'] # We don't need this variable anymore def sort(): # Not in style, left as exercise