Fix a typo in comments.
diff --git a/src/main/java/net/floodlightcontroller/flowcache/FlowManager.java b/src/main/java/net/floodlightcontroller/flowcache/FlowManager.java
index c310ed9..a5f759c 100644
--- a/src/main/java/net/floodlightcontroller/flowcache/FlowManager.java
+++ b/src/main/java/net/floodlightcontroller/flowcache/FlowManager.java
@@ -505,7 +505,7 @@
 	    //
 	    // TODO: String-based comparison is sub-optimal.
 	    // We are using it for now to save us the extra work of
-	    // implementing the "equals()" and "haskCode()" methods.
+	    // implementing the "equals()" and "hashCode()" methods.
 	    //
 	    if (! flow.installerId().toString().equals(installerId.toString()))
 		continue;
@@ -555,7 +555,7 @@
 	    //
 	    // TODO: String-based comparison is sub-optimal.
 	    // We are using it for now to save us the extra work of
-	    // implementing the "equals()" and "haskCode()" methods.
+	    // implementing the "equals()" and "hashCode()" methods.
 	    //
 	    if (! flow.dataPath().srcPort().toString().equals(dataPathEndpoints.srcPort().toString())) {
 		continue;