Author: hiranya
Date: Sat Aug  3 19:24:37 2013
New Revision: 1510061

URL: http://svn.apache.org/r1510061
Log:
Fixing a couple of minor typos

Modified:
    
synapse/trunk/java/modules/transports/core/nhttp/src/main/java/org/apache/synapse/transport/passthru/SourceHandler.java

Modified: 
synapse/trunk/java/modules/transports/core/nhttp/src/main/java/org/apache/synapse/transport/passthru/SourceHandler.java
URL: 
http://svn.apache.org/viewvc/synapse/trunk/java/modules/transports/core/nhttp/src/main/java/org/apache/synapse/transport/passthru/SourceHandler.java?rev=1510061&r1=1510060&r2=1510061&view=diff
==============================================================================
--- 
synapse/trunk/java/modules/transports/core/nhttp/src/main/java/org/apache/synapse/transport/passthru/SourceHandler.java
 (original)
+++ 
synapse/trunk/java/modules/transports/core/nhttp/src/main/java/org/apache/synapse/transport/passthru/SourceHandler.java
 Sat Aug  3 19:24:37 2013
@@ -467,7 +467,7 @@ public class SourceHandler implements NH
     
     /**
      * Commit the response to the connection. Processes the response through 
the configured
-     * HttpProcessor and submits it to be sent out. This method hides any 
exceptions and is targetted
+     * HttpProcessor and submits it to be sent out. This method hides any 
exceptions and is targeted
      * for non critical (i.e. browser requests etc) requests, which are not 
core messages
      * @param conn the connection being processed
      * @param response the response to commit over the connection
@@ -481,7 +481,7 @@ public class SourceHandler implements NH
         } catch (HttpException e) {
             handleException("Unexpected HTTP protocol error : " + 
e.getMessage(), e, conn);
         } catch (IOException e) {
-            handleException("IO error submiting response : " + e.getMessage(), 
e, conn);
+            handleException("IO error submitting response : " + 
e.getMessage(), e, conn);
         }
     }
 


Reply via email to