From d93ac261adc022453b16d2879805057fd6205773 Mon Sep 17 00:00:00 2001 From: Albert Lee Date: Tue, 11 Mar 2008 20:05:00 +0000 Subject: [PATCH] OPENJPA-535 - fix comment typos. git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@636090 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/openjpa/jdbc/schema/SchemaFactory.java | 4 ++-- .../src/main/java/org/apache/openjpa/lib/util/Localizer.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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