diff --git a/src/main/java/net/floodlightcontroller/core/module/FloodlightModuleContext.java b/src/main/java/net/floodlightcontroller/core/module/FloodlightModuleContext.java
index cc267d6d19cb4c53cb6dce400d07b91c9dd78b60..c26a595b6924d546d58b72ecb96377eefa773293 100644
--- a/src/main/java/net/floodlightcontroller/core/module/FloodlightModuleContext.java
+++ b/src/main/java/net/floodlightcontroller/core/module/FloodlightModuleContext.java
@@ -29,7 +29,7 @@ public class FloodlightModuleContext implements IFloodlightModuleContext {
 	/**
 	 * Adds a IFloodlightModule for this Context.
 	 * @param clazz the service class
-	 * @param module The IFloodlightModule to add to the registry
+	 * @param service The IFloodlightService to add to the registry
 	 */
 	public void addService(Class<? extends IFloodlightService> clazz, 
 	                       IFloodlightService service) {
diff --git a/src/main/java/net/floodlightcontroller/core/module/IFloodlightModule.java b/src/main/java/net/floodlightcontroller/core/module/IFloodlightModule.java
index 23f1ad71dd06d1e5c9b9518210eb950ce87843c0..f8b196b23e74a7fefa15e507a8a5b81c23a64ce3 100644
--- a/src/main/java/net/floodlightcontroller/core/module/IFloodlightModule.java
+++ b/src/main/java/net/floodlightcontroller/core/module/IFloodlightModule.java
@@ -41,7 +41,7 @@ public interface IFloodlightModule {
 	 * Get a list of Modules that this module depends on.  The module system
 	 * will ensure that each these dependencies is resolved before the 
 	 * subsequent calls to init().
-	 * @return The Collection of IFloodlightServices that this module depnds
+	 * @return The Collection of IFloodlightServices that this module depends
 	 *         on.
 	 */