You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by jl...@apache.org on 2013/11/04 12:34:32 UTC

svn commit: r1538563 - /openwebbeans/trunk/webbeans-web/src/main/java/org/apache/webbeans/web/context/WebContextsService.java

Author: jlmonteiro
Date: Mon Nov  4 11:34:32 2013
New Revision: 1538563

URL: http://svn.apache.org/r1538563
Log:
Fix typos

Modified:
    openwebbeans/trunk/webbeans-web/src/main/java/org/apache/webbeans/web/context/WebContextsService.java

Modified: openwebbeans/trunk/webbeans-web/src/main/java/org/apache/webbeans/web/context/WebContextsService.java
URL: http://svn.apache.org/viewvc/openwebbeans/trunk/webbeans-web/src/main/java/org/apache/webbeans/web/context/WebContextsService.java?rev=1538563&r1=1538562&r2=1538563&view=diff
==============================================================================
--- openwebbeans/trunk/webbeans-web/src/main/java/org/apache/webbeans/web/context/WebContextsService.java (original)
+++ openwebbeans/trunk/webbeans-web/src/main/java/org/apache/webbeans/web/context/WebContextsService.java Mon Nov  4 11:34:32 2013
@@ -358,7 +358,7 @@ public class WebContextsService extends 
                 //Init thread local application context
                 initApplicationContext(event.getServletContext());
                 
-                //Init thread local sigleton context
+                //Init thread local singleton context
                 initSingletonContext(event.getServletContext());
             }            
         }
@@ -367,7 +367,7 @@ public class WebContextsService extends 
                 //Init thread local application context
                 initApplicationContext(null);
 
-                //Init thread local sigleton context
+                //Init thread local singleton context
                 initSingletonContext(null);
         }
     }