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