You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ch...@apache.org on 2018/06/20 13:02:58 UTC

[text] (doc) Typo: 'RandomStringBuilder' -> 'RandomStringGenerator'

Repository: commons-text
Updated Branches:
  refs/heads/master 13627dab8 -> 2151502ee


(doc) Typo: 'RandomStringBuilder' -> 'RandomStringGenerator'


Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/2151502e
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/2151502e
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/2151502e

Branch: refs/heads/master
Commit: 2151502eea87759211267a3c0732f4a8dae6045a
Parents: 13627da
Author: Jostein Tveit <jo...@pvv.ntnu.no>
Authored: Wed Jun 20 13:38:02 2018 +0200
Committer: Jostein Tveit <jo...@pvv.ntnu.no>
Committed: Wed Jun 20 13:38:02 2018 +0200

----------------------------------------------------------------------
 src/main/java/org/apache/commons/text/RandomStringGenerator.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/2151502e/src/main/java/org/apache/commons/text/RandomStringGenerator.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/text/RandomStringGenerator.java b/src/main/java/org/apache/commons/text/RandomStringGenerator.java
index c1affc0..3a8814e 100644
--- a/src/main/java/org/apache/commons/text/RandomStringGenerator.java
+++ b/src/main/java/org/apache/commons/text/RandomStringGenerator.java
@@ -49,7 +49,7 @@ import java.util.concurrent.ThreadLocalRandom;
  * String randomLetters = generator.generate(20);
  * </pre>
  * <p>
- * {@code RandomStringBuilder} instances are thread-safe when using the
+ * {@code RandomStringGenerator} instances are thread-safe when using the
  * default random number generator (RNG). If a custom RNG is set by calling the method
  * {@link Builder#usingRandom(TextRandomProvider) Builder.usingRandom(TextRandomProvider)}, thread-safety
  * must be ensured externally.