Author: veithen
Date: Fri May 14 19:11:45 2010
New Revision: 944405

URL: http://svn.apache.org/viewvc?rev=944405&view=rev
Log:
Fixed typo in comment.

Modified:
    
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/util/stax/XMLStreamReaderUtils.java

Modified: 
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/util/stax/XMLStreamReaderUtils.java
URL: 
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/util/stax/XMLStreamReaderUtils.java?rev=944405&r1=944404&r2=944405&view=diff
==============================================================================
--- 
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/util/stax/XMLStreamReaderUtils.java
 (original)
+++ 
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/util/stax/XMLStreamReaderUtils.java
 Fri May 14 19:11:45 2010
@@ -81,7 +81,7 @@ public class XMLStreamReaderUtils {
         } else {
             int event = reader.next();
             if (event == XMLStreamConstants.END_ELEMENT) {
-                // This means that the element is actaullay empty -> return 
empty DataHandler
+                // This means that the element is actually empty -> return 
empty DataHandler
                 return new DataHandler(new ByteArrayDataSource(new byte[0]));
             } else if (event != XMLStreamConstants.CHARACTERS) {
                 throw new XMLStreamException("Expected a CHARACTER event");


Reply via email to