You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2016/01/14 23:10:26 UTC

[lang] [LANG-1200][GitHub PR] modify note at line 1230 #120

Repository: commons-lang
Updated Branches:
  refs/heads/master afc942c7b -> 4d4e0b048


[LANG-1200][GitHub PR] modify note at line 1230 #120

Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/4d4e0b04
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/4d4e0b04
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/4d4e0b04

Branch: refs/heads/master
Commit: 4d4e0b0481ddc14c201d1e732967cf7b55c4bceb
Parents: afc942c
Author: ggregory <gg...@apache.org>
Authored: Thu Jan 14 14:10:23 2016 -0800
Committer: ggregory <gg...@apache.org>
Committed: Thu Jan 14 14:10:23 2016 -0800

----------------------------------------------------------------------
 src/changes/changes.xml                                 | 1 +
 src/main/java/org/apache/commons/lang3/StringUtils.java | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/4d4e0b04/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 61abcff..60092c7 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -74,6 +74,7 @@
     <action issue="LANG-1107" type="update" dev="chas">Fix parsing edge cases in FastDateParser</action>
     <action issue="LANG-1162" type="fix" dev="sebb">StringUtils#equals fails with Index OOBE on non-Strings with identical leading prefix</action>
     <action issue="LANG-1163" type="fix" dev="sebb">There are no tests for CharSequenceUtils.regionMatches</action>
+    <action issue="LANG-1200" type="fix" dev="ggregory" due-to="BarkZhang">[GitHub PR] modify note at line 1230 #120</action>
   </release>
 
   <release version="3.4" date="2014-04-06" description="Feature and bugfix release">

http://git-wip-us.apache.org/repos/asf/commons-lang/blob/4d4e0b04/src/main/java/org/apache/commons/lang3/StringUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java b/src/main/java/org/apache/commons/lang3/StringUtils.java
index df53c59..a0b5e52 100644
--- a/src/main/java/org/apache/commons/lang3/StringUtils.java
+++ b/src/main/java/org/apache/commons/lang3/StringUtils.java
@@ -1227,7 +1227,7 @@ public class StringUtils {
      * <pre>
      * StringUtils.ordinalIndexOf("ababab","aba", 1)   = 0
      * StringUtils.ordinalIndexOf("ababab","aba", 2)   = 2
-     * StringUtils.ordinalIndexOf("ababab","aba", 3    = -1
+     * StringUtils.ordinalIndexOf("ababab","aba", 3)   = -1
      *
      * StringUtils.ordinalIndexOf("abababab", "abab", 1) = 0
      * StringUtils.ordinalIndexOf("abababab", "abab", 2) = 2