You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-cvs@xml.apache.org by mr...@apache.org on 2007/08/27 06:18:23 UTC

svn commit: r569992 - in /xml/commons/trunk/java/external/src/javax/xml/validation: SchemaFactory.java SchemaFactoryFinder.java TypeInfoProvider.java

Author: mrglavas
Date: Sun Aug 26 21:18:22 2007
New Revision: 569992

URL: http://svn.apache.org/viewvc?rev=569992&view=rev
Log:
Fixing several typos.

Modified:
    xml/commons/trunk/java/external/src/javax/xml/validation/SchemaFactory.java
    xml/commons/trunk/java/external/src/javax/xml/validation/SchemaFactoryFinder.java
    xml/commons/trunk/java/external/src/javax/xml/validation/TypeInfoProvider.java

Modified: xml/commons/trunk/java/external/src/javax/xml/validation/SchemaFactory.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/javax/xml/validation/SchemaFactory.java?rev=569992&r1=569991&r2=569992&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/validation/SchemaFactory.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/validation/SchemaFactory.java Sun Aug 26 21:18:22 2007
@@ -73,7 +73,7 @@
  * and has a significant effect on the parsing process, it is impossible
  * to define the DTD validation as a process independent from parsing. 
  * For this reason, this specification does not define the semantics for
- * the XML DTD. This doesn't prohibit implentors from implementing it
+ * the XML DTD. This doesn't prohibit implementors from implementing it
  * in a way they see fit, but <em>users are warned that any DTD
  * validation implemented on this interface necessarily deviate from
  * the XML DTD semantics as defined in the XML 1.0</em>.
@@ -256,7 +256,7 @@
 	 * <ul>
 	 *   <li>
 	 *     <code>true</code>: the implementation will limit XML processing to conform to implementation limits.
-	 *     Examples include enity expansion limits and XML Schema constructs that would consume large amounts of resources.
+	 *     Examples include entity expansion limits and XML Schema constructs that would consume large amounts of resources.
 	 *     If XML processing is limited for security reasons, it will be reported via a call to the registered
 	 *     {@link ErrorHandler#fatalError(SAXParseException exception)}.
 	 *     See {@link  #setErrorHandler(ErrorHandler errorHandler)}.
@@ -618,7 +618,7 @@
      * The returned {@link Schema} object assumes that if documents
      * refer to the same URL in the schema location hints,
      * they will always resolve to the same schema document. This
-     * asusmption allows implementations to reuse parsed results of
+     * assumption allows implementations to reuse parsed results of
      * schema documents so that multiple validations against the same
      * schema will run faster.
      * 

Modified: xml/commons/trunk/java/external/src/javax/xml/validation/SchemaFactoryFinder.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/javax/xml/validation/SchemaFactoryFinder.java?rev=569992&r1=569991&r2=569992&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/validation/SchemaFactoryFinder.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/validation/SchemaFactoryFinder.java Sun Aug 26 21:18:22 2007
@@ -263,7 +263,7 @@
      * <p>Creates an instance of the specified and returns it.</p>
      * 
      * @param className
-     *      fully qualified class name to be instanciated.
+     *      fully qualified class name to be instantiated.
      * 
      * @return null
      *      if it fails. Error messages will be printed by this method. 

Modified: xml/commons/trunk/java/external/src/javax/xml/validation/TypeInfoProvider.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/javax/xml/validation/TypeInfoProvider.java?rev=569992&r1=569991&r2=569992&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/validation/TypeInfoProvider.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/validation/TypeInfoProvider.java Sun Aug 26 21:18:22 2007
@@ -113,7 +113,7 @@
      * to be ID.
      * 
      * <p>
-     * Exacly how an attribute is "determined to be ID" is up to the
+     * Exactly how an attribute is "determined to be ID" is up to the
      * schema language. In case of W3C XML Schema, this means
      * that the actual type of the attribute is the built-in ID type
      * or its derived type.