You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2014/07/20 04:38:06 UTC

svn commit: r1612013 - /logging/log4j/log4j2/trunk/src/site/xdoc/manual/messages.xml

Author: mattsicker
Date: Sun Jul 20 02:38:05 2014
New Revision: 1612013

URL: http://svn.apache.org/r1612013
Log:
Fix typos in messages manual page.

Modified:
    logging/log4j/log4j2/trunk/src/site/xdoc/manual/messages.xml

Modified: logging/log4j/log4j2/trunk/src/site/xdoc/manual/messages.xml
URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/src/site/xdoc/manual/messages.xml?rev=1612013&r1=1612012&r2=1612013&view=diff
==============================================================================
--- logging/log4j/log4j2/trunk/src/site/xdoc/manual/messages.xml (original)
+++ logging/log4j/log4j2/trunk/src/site/xdoc/manual/messages.xml Sun Jul 20 02:38:05 2014
@@ -75,7 +75,7 @@ public class SQLMessage implements Messa
       QUERY
   };
 
-  prviate final SQLType type;
+  private final SQLType type;
   private final String table;
   private final Map<String, String> cols;
 
@@ -215,7 +215,7 @@ public class MyApp {
         <p>
           A MultiformatMessage will have a getFormats method and a getFormattedMessage method that accepts and array
           of format Strings. The getFormats method may be called by a Layout to provide it information on what
-          formatting optionsthe Message supports. The Layout may then call getFormattedMessage with one or more
+          formatting options the Message supports. The Layout may then call getFormattedMessage with one or more
           for the formats. If the Message doesn't recognize the format name it will simply format the data using its
           default format. An example of this is the StructuredDataMessage which accepts a format String of "XML"
           which will cause it to format the event data as XML instead of the RFC 5424 format.