Return-Path: Delivered-To: apmail-openjpa-commits-archive@www.apache.org Received: (qmail 80048 invoked from network); 11 Mar 2008 20:05:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Mar 2008 20:05:19 -0000 Received: (qmail 63418 invoked by uid 500); 11 Mar 2008 20:05:16 -0000 Delivered-To: apmail-openjpa-commits-archive@openjpa.apache.org Received: (qmail 63410 invoked by uid 500); 11 Mar 2008 20:05:16 -0000 Mailing-List: contact commits-help@openjpa.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openjpa.apache.org Delivered-To: mailing list commits@openjpa.apache.org Received: (qmail 63401 invoked by uid 99); 11 Mar 2008 20:05:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 Mar 2008 13:05:16 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 Mar 2008 20:04:47 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A956E1A9838; Tue, 11 Mar 2008 13:04:58 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r636088 - in /openjpa/branches/1.0.x: openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/schema/SchemaFactory.java openjpa-lib/src/main/java/org/apache/openjpa/lib/util/Localizer.java Date: Tue, 11 Mar 2008 20:04:57 -0000 To: commits@openjpa.apache.org From: allee8285@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080311200458.A956E1A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: allee8285 Date: Tue Mar 11 13:04:54 2008 New Revision: 636088 URL: http://svn.apache.org/viewvc?rev=636088&view=rev Log: OPENJPA-535 - fix comment typos. Modified: openjpa/branches/1.0.x/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/schema/SchemaFactory.java openjpa/branches/1.0.x/openjpa-lib/src/main/java/org/apache/openjpa/lib/util/Localizer.java Modified: openjpa/branches/1.0.x/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/schema/SchemaFactory.java URL: http://svn.apache.org/viewvc/openjpa/branches/1.0.x/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/schema/SchemaFactory.java?rev=636088&r1=636087&r2=636088&view=diff ============================================================================== --- openjpa/branches/1.0.x/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/schema/SchemaFactory.java (original) +++ openjpa/branches/1.0.x/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/schema/SchemaFactory.java Tue Mar 11 13:04:54 2008 @@ -20,9 +20,9 @@ /** * 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 */ Modified: openjpa/branches/1.0.x/openjpa-lib/src/main/java/org/apache/openjpa/lib/util/Localizer.java URL: http://svn.apache.org/viewvc/openjpa/branches/1.0.x/openjpa-lib/src/main/java/org/apache/openjpa/lib/util/Localizer.java?rev=636088&r1=636087&r2=636088&view=diff ============================================================================== --- openjpa/branches/1.0.x/openjpa-lib/src/main/java/org/apache/openjpa/lib/util/Localizer.java (original) +++ openjpa/branches/1.0.x/openjpa-lib/src/main/java/org/apache/openjpa/lib/util/Localizer.java Tue Mar 11 13:04:54 2008 @@ -34,13 +34,13 @@ /** * 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