Fix Bugzilla 3423: documentation updates for proper class, property names
(one of two checkins)
PR:3423
Submitted by:gthb@dimon.is


git-svn-id: https://svn.apache.org/repos/asf/xalan/java/trunk@335487 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/javax/xml/transform/TransformerFactory.java b/src/javax/xml/transform/TransformerFactory.java
index 8b1937a..889dcf2 100644
--- a/src/javax/xml/transform/TransformerFactory.java
+++ b/src/javax/xml/transform/TransformerFactory.java
@@ -98,7 +98,7 @@
      * load:
      * <ul>
      * <li>
-     * Use the <code>javax.xml.parsers.DocumentBuilderFactory</code> system
+     * Use the <code>javax.xml.transform.TransformerFactory</code> system
      * property.
      * </li>
      * <li>
@@ -108,10 +108,10 @@
      * system property defined above.
      * </li>
      * <li>
-     * Use the Services API (as detailed in teh JAR specification), if
+     * Use the Services API (as detailed in the JAR specification), if
      * available, to determine the classname. The Services API will look
      * for a classname in the file
-     * <code>META-INF/services/javax.xml.parsers.TransformerFactory</code>
+     * <code>META-INF/services/javax.xml.transform.TransformerFactory</code>
      * in jars available to the runtime.
      * </li>
      * <li>
diff --git a/src/org/apache/xml/dtm/DTMManager.java b/src/org/apache/xml/dtm/DTMManager.java
index fe2cf7b..fa39abe 100644
--- a/src/org/apache/xml/dtm/DTMManager.java
+++ b/src/org/apache/xml/dtm/DTMManager.java
@@ -141,7 +141,7 @@
    * load:
    * <ul>
    * <li>
-   * Use the <code>javax.xml.parsers.DocumentBuilderFactory</code> system
+   * Use the <code>org.apache.xml.dtm.DTMManager</code> system
    * property.
    * </li>
    * <li>
@@ -151,14 +151,15 @@
    * system property defined above.
    * </li>
    * <li>
-   * Use the Services API (as detailed in teh JAR specification), if
+   * Use the Services API (as detailed in the JAR specification), if
    * available, to determine the classname. The Services API will look
    * for a classname in the file
    * <code>META-INF/services/javax.xml.parsers.DTMManager</code>
    * in jars available to the runtime.
    * </li>
    * <li>
-   * Platform default <code>DTMManager</code> instance.
+   * Use the default <code>DTMManager</code> classname, which is
+   * <code>org.apache.xml.dtm.ref.DTMManagerDefault</code>.
    * </li>
    * </ul>
    *
@@ -169,7 +170,7 @@
    * @return new DTMManager instance, never null.
    *
    * @throws DTMConfigurationException
-   * if the implmentation is not available or cannot be instantiated.
+   * if the implementation is not available or cannot be instantiated.
    */
   public static DTMManager newInstance(XMLStringFactory xsf) 
            throws DTMConfigurationException