We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc3951f commit 07c764bCopy full SHA for 07c764b
README.md
@@ -40,13 +40,13 @@ $config = StringConfig::make()
40
41
$string = RandomString::fromConfig($config)->generate(); // Output: 9387406871490781
42
43
-// Generate string that contains only lower case letters
+// Generate string that contains only lowercase letters
44
$config = StringConfig::make()
45
->lowerCaseOnly();
46
47
$string = RandomString::fromConfig($config)->generate(); // Output: hvphyfmgnvbbajve
48
49
-// Generate string that contains only upper case letters
+// Generate string that contains only uppercase letters
50
51
->upperCaseOnly();
52
0 commit comments