diff --git a/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/schema/SchemaFactory.java b/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/schema/SchemaFactory.java
index 61500b918..46e8b82cb 100644
--- a/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/schema/SchemaFactory.java
+++ b/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/schema/SchemaFactory.java
@@ -20,9 +20,9 @@ package org.apache.openjpa.jdbc.schema;
/**
* Factory for {@link SchemaGroup}s. Users can plug in their own factory
- * implementation, or rely on the ones provided. Most schema factoryies
+ * implementation, or rely on the ones provided. Most schema factories
* will probably implement {@link org.apache.openjpa.lib.conf.Configurable} to
- * receive the system congiguration on construction.
+ * receive the system configuration on construction.
*
* @author Abe White
*/
diff --git a/openjpa-lib/src/main/java/org/apache/openjpa/lib/util/Localizer.java b/openjpa-lib/src/main/java/org/apache/openjpa/lib/util/Localizer.java
index 7d8210a54..333b2ba5d 100644
--- a/openjpa-lib/src/main/java/org/apache/openjpa/lib/util/Localizer.java
+++ b/openjpa-lib/src/main/java/org/apache/openjpa/lib/util/Localizer.java
@@ -34,13 +34,13 @@ import org.apache.openjpa.lib.util.concurrent.CopyOnWriteArraySet;
/**
* The Localizer provides convenient access to localized
- * strings. It inlcudes built-in support for parameter substitution through
+ * strings. It includes built-in support for parameter substitution through
* the use of the {@link MessageFormat} utility.
* Strings are stored in per-package {@link Properties} files.
* The property file for the default locale must be named
* localizer.properties
. Additional locales can be supported
* through additional property files using the naming conventions specified
- * in the {@link ResourceBundle} class. For example, the german locale
+ * in the {@link ResourceBundle} class. For example, the German locale
* could be supported through a localizer_de_DE.properties
file.
*
* @author Abe White