From 3a14f76ed3b9f668b4ce98332f421e8e63eb20ec Mon Sep 17 00:00:00 2001 From: Deborah Digges Date: Thu, 17 Dec 2015 20:59:05 +0530 Subject: [PATCH] Fix typo in WordCountTopology colmun -> column --- lesson2/stage1/src/jvm/udacity/storm/WordCountTopology.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lesson2/stage1/src/jvm/udacity/storm/WordCountTopology.java b/lesson2/stage1/src/jvm/udacity/storm/WordCountTopology.java index c81bb8c..e872623 100644 --- a/lesson2/stage1/src/jvm/udacity/storm/WordCountTopology.java +++ b/lesson2/stage1/src/jvm/udacity/storm/WordCountTopology.java @@ -149,7 +149,7 @@ public void declareOutputFields(OutputFieldsDeclarer outputFieldsDeclarer) // tell storm the schema of the output tuple for this spout // tuple consists of a two columns called 'word' and 'count' - // declare the first column 'word', second colmun 'count' + // declare the first column 'word', second column 'count' //**************************************************** //BEGIN YOUR CODE - Part 2-of-3