Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 51FF1200BD4 for ; Thu, 17 Nov 2016 01:21:09 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 50813160B13; Thu, 17 Nov 2016 00:21:09 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 9B548160B08 for ; Thu, 17 Nov 2016 01:21:08 +0100 (CET) Received: (qmail 43916 invoked by uid 500); 17 Nov 2016 00:21:07 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 43907 invoked by uid 99); 17 Nov 2016 00:21:07 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Nov 2016 00:21:07 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id AFFA7F1745; Thu, 17 Nov 2016 00:21:07 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ggregory@apache.org To: commits@commons.apache.org Message-Id: <3be6a6981ec041fc8b589069db82f9b2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [lang] Javadoc: Use the active voice. Date: Thu, 17 Nov 2016 00:21:07 +0000 (UTC) archived-at: Thu, 17 Nov 2016 00:21:09 -0000 Repository: commons-lang Updated Branches: refs/heads/master efdff37fb -> 33c104e1b Javadoc: Use the active voice. Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/33c104e1 Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/33c104e1 Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/33c104e1 Branch: refs/heads/master Commit: 33c104e1b4aee768558c63b2a43a88132ff93f6b Parents: efdff37 Author: Gary Gregory Authored: Wed Nov 16 16:21:05 2016 -0800 Committer: Gary Gregory Committed: Wed Nov 16 16:21:05 2016 -0800 ---------------------------------------------------------------------- .../java/org/apache/commons/lang3/time/DateParser.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/33c104e1/src/main/java/org/apache/commons/lang3/time/DateParser.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/lang3/time/DateParser.java b/src/main/java/org/apache/commons/lang3/time/DateParser.java index 6313452..3702603 100644 --- a/src/main/java/org/apache/commons/lang3/time/DateParser.java +++ b/src/main/java/org/apache/commons/lang3/time/DateParser.java @@ -59,7 +59,7 @@ public interface DateParser { Date parse(String source, ParsePosition pos); /** - * Parse a formatted date string according to the format. Updates the Calendar with parsed fields. + * Parses a formatted date string according to the format. Updates the Calendar with parsed fields. * Upon success, the ParsePosition index is updated to indicate how much of the source text was consumed. * Not all source text needs to be consumed. Upon parse failure, ParsePosition error index is updated to * the offset of the source text which does not match the supplied format. @@ -78,7 +78,7 @@ public interface DateParser { // Accessors //----------------------------------------------------------------------- /** - *

Get the pattern used by this parser.

+ *

Gets the pattern used by this parser.

* * @return the pattern, {@link java.text.SimpleDateFormat} compatible */ @@ -86,7 +86,7 @@ public interface DateParser { /** *

- * Get the time zone used by this parser. + * Gets the time zone used by this parser. *

* *

@@ -99,7 +99,7 @@ public interface DateParser { TimeZone getTimeZone(); /** - *

Get the locale used by this parser.

+ *

Gets the locale used by this parser.

* * @return the locale */ @@ -116,7 +116,7 @@ public interface DateParser { Object parseObject(String source) throws ParseException; /** - * Parse a date/time string according to the given parse position. + * Parses a date/time string according to the given parse position. * * @param source A String whose beginning should be parsed. * @param pos the parse position