fix typo
diff --git a/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java b/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java
index e285830..1e8f647 100644
--- a/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java
+++ b/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java
@@ -24,7 +24,6 @@
 

 package org.slf4j;

 

-import java.io.File;

 import java.io.IOException;

 import java.net.URL;

 import java.util.ArrayList;

@@ -119,7 +118,7 @@
       // the next line does the binding

       getSingleton();

       INITIALIZATION_STATE = SUCCESSFUL_INITILIZATION;

-      emitSubstitureLoggerWarning();

+      emitSubstituteLoggerWarning();

     } catch (NoClassDefFoundError ncde) {

       INITIALIZATION_STATE = FAILED_INITILIZATION;

       String msg = ncde.getMessage();

@@ -139,7 +138,7 @@
     }

   }

 

-  private final static void emitSubstitureLoggerWarning() {

+  private final static void emitSubstituteLoggerWarning() {

     List loggerNameList = TEMP_FACTORY.getLoggerNameList();

     if (loggerNameList.size() == 0) {

       return;