Return-Path: X-Original-To: apmail-logging-commits-archive@minotaur.apache.org Delivered-To: apmail-logging-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1EAC1C097 for ; Sat, 5 May 2012 22:45:01 +0000 (UTC) Received: (qmail 29585 invoked by uid 500); 5 May 2012 22:45:01 -0000 Delivered-To: apmail-logging-commits-archive@logging.apache.org Received: (qmail 29558 invoked by uid 500); 5 May 2012 22:45:01 -0000 Mailing-List: contact commits-help@logging.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@logging.apache.org Delivered-To: mailing list commits@logging.apache.org Received: (qmail 29547 invoked by uid 99); 5 May 2012 22:45:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 May 2012 22:45:01 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 May 2012 22:45:00 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id F1EAA2388A02; Sat, 5 May 2012 22:44:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1334530 - /logging/log4j/trunk/src/main/java/org/apache/log4j/net/JMSAppender.java Date: Sat, 05 May 2012 22:44:39 -0000 To: commits@logging.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120505224439.F1EAA2388A02@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Sat May 5 22:44:39 2012 New Revision: 1334530 URL: http://svn.apache.org/viewvc?rev=1334530&view=rev Log: Fix typos in Javadoc. Modified: logging/log4j/trunk/src/main/java/org/apache/log4j/net/JMSAppender.java Modified: logging/log4j/trunk/src/main/java/org/apache/log4j/net/JMSAppender.java URL: http://svn.apache.org/viewvc/logging/log4j/trunk/src/main/java/org/apache/log4j/net/JMSAppender.java?rev=1334530&r1=1334529&r2=1334530&view=diff ============================================================================== --- logging/log4j/trunk/src/main/java/org/apache/log4j/net/JMSAppender.java (original) +++ logging/log4j/trunk/src/main/java/org/apache/log4j/net/JMSAppender.java Sat May 5 22:44:39 2012 @@ -43,7 +43,7 @@ import java.util.Properties; *

JMS {@link Topic topics} and {@link TopicConnectionFactory topic * connection factories} are administered objects that are retrieved - * using JNDI messaging which in turn requires the retreival of a JNDI + * using JNDI messaging which in turn requires the retrieval of a JNDI * {@link Context}. *

There are two common methods for retrieving a JNDI {@link @@ -63,7 +63,7 @@ import java.util.Properties; *

In the second approach, several predetermined properties are set * and these properties are passed to the InitialContext - * contructor to connect to the naming service provider. For example, + * constructor to connect to the naming service provider. For example, * to connect to JBoss naming service one would write:

@@ -74,7 +74,7 @@ import java.util.Properties;
    InitialContext jndiContext = new InitialContext(env);
 
- * where hostname is the host where the JBoss applicaiton + * where hostname is the host where the JBoss application * server is running. * *

To connect to the the naming service of Weblogic application