[github-2] fix typos in javadoc. Thanks to Libor Nenadál. This closes #2

git-svn-id: https://svn.apache.org/repos/asf/xmlbeans/trunk@1884526 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/xmlbeans/SchemaType.java b/src/main/java/org/apache/xmlbeans/SchemaType.java
index 8c55dc7..def4795 100644
--- a/src/main/java/org/apache/xmlbeans/SchemaType.java
+++ b/src/main/java/org/apache/xmlbeans/SchemaType.java
@@ -70,7 +70,7 @@
  *     only at the root of an instance, they are otherwise just like
  *     ordinary complex types.
  * <li>Simple types can be detected using {@link #isSimpleType}.
- *     Complex types are consdered to be all the types that are
+ *     Complex types are considered to be all the types that are
  *     not simple.
  * <li>Simple types are divided into three varieties: atomic types,
  *     list types, and union types.  Which variety of simple type
diff --git a/src/main/java/org/apache/xmlbeans/SchemaTypeSystem.java b/src/main/java/org/apache/xmlbeans/SchemaTypeSystem.java
index 8240560..b200ac8 100644
--- a/src/main/java/org/apache/xmlbeans/SchemaTypeSystem.java
+++ b/src/main/java/org/apache/xmlbeans/SchemaTypeSystem.java
@@ -119,7 +119,7 @@
  * for (int i = 0; i < allSeenTypes.size(); i++)
  * {
  *     SchemaType sType = (SchemaType)allSeenTypes.get(i);
- *     System.out.prinlnt("Visiting " + sType.toString());
+ *     System.out.println("Visiting " + sType.toString());
  *     allSeenTypes.addAll(Arrays.asList(sType.getAnonymousTypes()));
  * }
  * </pre>