You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2015/09/01 07:42:40 UTC

[5/6] logging-log4j2 git commit: Javadoc: Use the active voice.

Javadoc: Use the active voice.

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/92947ffa
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/92947ffa
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/92947ffa

Branch: refs/heads/LOG4J2-952
Commit: 92947ffa87c8c66bb77766669a391bad56b3e3c6
Parents: 4f09bf0
Author: ggregory <gg...@apache.org>
Authored: Mon Aug 31 22:19:21 2015 -0700
Committer: ggregory <gg...@apache.org>
Committed: Mon Aug 31 22:19:21 2015 -0700

----------------------------------------------------------------------
 .../core/config/builder/api/AppenderComponentBuilder.java      | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/92947ffa/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/AppenderComponentBuilder.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/AppenderComponentBuilder.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/AppenderComponentBuilder.java
index 47a30d1..ab4ec12 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/AppenderComponentBuilder.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/AppenderComponentBuilder.java
@@ -22,21 +22,21 @@ package org.apache.logging.log4j.core.config.builder.api;
 public interface AppenderComponentBuilder extends ComponentBuilder<AppenderComponentBuilder> {
 
     /**
-     * Add a Layout to the Appender component.
+     * Adds a Layout to the Appender component.
      * @param assembler The LayoutComponentBuilder with all of its attributes set.
      * @return this Assembler.
      */
     AppenderComponentBuilder add(LayoutComponentBuilder assembler);
 
     /**
-     * Add a Filter to the Appender component.
+     * Adds a Filter to the Appender component.
      * @param assembler The FilterComponentBuilder with all of its attributes and sub components set.
      * @return this Assembler.
      */
     AppenderComponentBuilder add(FilterComponentBuilder assembler);
 
     /**
-     * Return the name of the Appender.
+     * Returns the name of the Appender.
      * @return the name of the Appender.
      */
     String getName();