OPENJPA-535 - fix comment typos.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@636090 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Albert Lee 2008-03-11 20:05:00 +00:00
parent 282c8e0c5b
commit d93ac261ad
2 changed files with 4 additions and 4 deletions

View File

@ -20,9 +20,9 @@ package org.apache.openjpa.jdbc.schema;
/** /**
* Factory for {@link SchemaGroup}s. Users can plug in their own factory * 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 * 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 * @author Abe White
*/ */

View File

@ -34,13 +34,13 @@ import org.apache.openjpa.lib.util.concurrent.CopyOnWriteArraySet;
/** /**
* The Localizer provides convenient access to localized * 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. * the use of the {@link MessageFormat} utility.
* Strings are stored in per-package {@link Properties} files. * Strings are stored in per-package {@link Properties} files.
* The property file for the default locale must be named * The property file for the default locale must be named
* <code>localizer.properties</code>. Additional locales can be supported * <code>localizer.properties</code>. Additional locales can be supported
* through additional property files using the naming conventions specified * 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 <code>localizer_de_DE.properties</code> file. * could be supported through a <code>localizer_de_DE.properties</code> file.
* *
* @author Abe White * @author Abe White