Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D2236EDAC for ; Mon, 28 Jan 2013 14:03:27 +0000 (UTC) Received: (qmail 14954 invoked by uid 500); 28 Jan 2013 14:03:27 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 14539 invoked by uid 500); 28 Jan 2013 14:03:23 -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 14509 invoked by uid 99); 28 Jan 2013 14:03:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Jan 2013 14:03:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Jan 2013 14:03:19 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 62C2423888CD; Mon, 28 Jan 2013 14:02:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1439408 - in /commons/proper/cli/trunk/src/main/java/org/apache/commons/cli: HelpFormatter.java OptionValidator.java Util.java Date: Mon, 28 Jan 2013 14:02:59 -0000 To: commits@commons.apache.org From: tn@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130128140259.62C2423888CD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tn Date: Mon Jan 28 14:02:58 2013 New Revision: 1439408 URL: http://svn.apache.org/viewvc?rev=1439408&view=rev Log: Fix javadoc typos. Modified: commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/HelpFormatter.java commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/OptionValidator.java commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/Util.java Modified: commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/HelpFormatter.java URL: http://svn.apache.org/viewvc/commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/HelpFormatter.java?rev=1439408&r1=1439407&r2=1439408&view=diff ============================================================================== --- commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/HelpFormatter.java (original) +++ commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/HelpFormatter.java Mon Jan 28 14:02:58 2013 @@ -512,7 +512,7 @@ public class HelpFormatter * @param pw the writer to which the help will be written * @param width the number of characters to be displayed on each line * @param cmdLineSyntax the syntax for this application - * @param header the banner to display at the begining of the help + * @param header the banner to display at the beginning of the help * @param options the Options instance * @param leftPad the number of characters of padding to be prefixed * to each line @@ -965,7 +965,7 @@ public class HelpFormatter * @param width width of the wrapped text * @param startPos position from which to start the lookup whitespace * character - * @return postion on which the text must be wrapped or -1 if the wrap + * @return position on which the text must be wrapped or -1 if the wrap * position is at the end of the text */ protected int findWrapPos(String text, int width, int startPos) Modified: commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/OptionValidator.java URL: http://svn.apache.org/viewvc/commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/OptionValidator.java?rev=1439408&r1=1439407&r2=1439408&view=diff ============================================================================== --- commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/OptionValidator.java (original) +++ commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/OptionValidator.java Mon Jan 28 14:02:58 2013 @@ -34,7 +34,7 @@ class OptionValidator } /** - * Validates whether opt is a permissable Option + * Validates whether opt is a permissible Option * shortOpt. The rules that specify if the opt * is valid are: * Modified: commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/Util.java URL: http://svn.apache.org/viewvc/commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/Util.java?rev=1439408&r1=1439407&r2=1439408&view=diff ============================================================================== --- commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/Util.java (original) +++ commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/Util.java Mon Jan 28 14:02:58 2013 @@ -33,7 +33,7 @@ class Util } /** - * Remove the hyphens from the begining of str and + * Remove the hyphens from the beginning of str and * return the new String. * * @param str The string from which the hyphens should be removed.