Github user britter commented on a diff in the pull request:
https://github.com/apache/commons-lang/pull/94#discussion_r32494411
--- Diff: src/main/java/org/apache/commons/lang3/RandomStringUtils.java ---
@@ -95,6 +95,21 @@ public static String randomAscii(final int count) {
public static String randomAlphabetic(final int count) {
return random(count, true, false);
}
+
+ /**
+ * <p>Creates a random string whose length is the number of characters
+ * specified.</p>
--- End diff --
Dosn't exactly describe what the method does. More like `Creates a random
string of length between minLength and maxLength`.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---