Author: tschoening Date: Sun Feb 9 18:38:44 2014 New Revision: 1566346 URL: http://svn.apache.org/r1566346 Log: \% -> % because % has been written without \ in other places.
Modified: incubator/log4cxx/trunk/src/main/include/log4cxx/patternlayout.h Modified: incubator/log4cxx/trunk/src/main/include/log4cxx/patternlayout.h URL: http://svn.apache.org/viewvc/incubator/log4cxx/trunk/src/main/include/log4cxx/patternlayout.h?rev=1566346&r1=1566345&r2=1566346&view=diff ============================================================================== --- incubator/log4cxx/trunk/src/main/include/log4cxx/patternlayout.h (original) +++ incubator/log4cxx/trunk/src/main/include/log4cxx/patternlayout.h Sun Feb 9 18:38:44 2014 @@ -99,7 +99,7 @@ namespace log4cxx * logger name is printed in full. * </p> * <p> - * For example, for the logger name "a.b.c" the pattern <strong>\%c{2}</strong> will + * For example, for the logger name "a.b.c" the pattern <strong>%c{2}</strong> will * output "b.c". * </p> * </td> @@ -215,15 +215,15 @@ namespace log4cxx * <td> * Used to output the MDC (mapped diagnostic context) associated with the thread that * generated the logging event. The <strong>X</strong> conversion character <em>must</em> be - * followed by the key for the map placed between braces, as in <strong>\%X{clientNumber}</strong> + * followed by the key for the map placed between braces, as in <strong>%X{clientNumber}</strong> * where <code>clientNumber</code> is the key. The value in the MDC corresponding to * the key will be output. * <p>See MDC class for more details.</p> * </td> * </tr> * <tr> - * <td align="center"><strong>\%</strong></td> - * <td>The sequence \%\% outputs a single percent sign.</td> + * <td align="center"><strong>%</strong></td> + * <td>The sequence %% outputs a single percent sign.</td> * </tr> * </table> *