diff --git a/docs/streaming-programming-guide.md b/docs/streaming-programming-guide.md
index 0cc572d1fde3682cce4f520bc5a94ac28439beaf..2a56cf07d0cfc66abc554f4cc083e93c1747e5c1 100644
--- a/docs/streaming-programming-guide.md
+++ b/docs/streaming-programming-guide.md
@@ -188,7 +188,7 @@ JavaPairDStream<String, Integer> wordCounts = pairs.reduceByKey(
       return i1 + i2;
     }
   });
-wordCount.print();     // Print a few of the counts to the console
+wordCounts.print();     // Print a few of the counts to the console
 {% endhighlight %}
 
 The `words` DStream is further mapped (one-to-one transformation) to a DStream of `(word,