You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by mi...@apache.org on 2016/10/24 08:08:39 UTC

[28/50] [abbrv] 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/1e322e4f
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/1e322e4f
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/1e322e4f

Branch: refs/heads/LOG4J2-1390
Commit: 1e322e4f2b51dc72f12eafea9e12335c65f59e59
Parents: ce86130
Author: Gary Gregory <gg...@apache.org>
Authored: Wed Oct 5 11:29:11 2016 -0700
Committer: Gary Gregory <gg...@apache.org>
Committed: Wed Oct 5 11:29:11 2016 -0700

----------------------------------------------------------------------
 .../java/org/apache/logging/log4j/core/util/CyclicBuffer.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/1e322e4f/log4j-core/src/main/java/org/apache/logging/log4j/core/util/CyclicBuffer.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/util/CyclicBuffer.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/util/CyclicBuffer.java
index 35b7eb5..0edc65e 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/util/CyclicBuffer.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/util/CyclicBuffer.java
@@ -31,7 +31,7 @@ public final class CyclicBuffer<T> {
     private final Class<T> clazz;
 
     /**
-     * Instantiate a new CyclicBuffer of at most <code>maxSize</code> events.
+     * Instantiates a new CyclicBuffer of at most <code>maxSize</code> events.
      * @param clazz The Class associate with the type of object in the buffer.
      * @param size The number of items in the buffer.
      * @throws IllegalArgumentException if the size is negative.
@@ -50,7 +50,7 @@ public final class CyclicBuffer<T> {
     }
 
     /**
-     * Add an item as the last event in the buffer.
+     * Adds an item as the last event in the buffer.
      * @param item The item to add to the buffer.
      */
     public synchronized void add(final T item) {