From 3823ff1ef3a549edb02d9555c1e14fbdbe2b1fbf Mon Sep 17 00:00:00 2001 From: Gumaro Melendez Date: Fri, 21 Apr 2023 22:36:47 -0600 Subject: [PATCH] Update numbers-and-strings.md replacing '#' characters with digits between 0 and 10 would create a string one character longer than desired 9% of the time. This is a correction for the docs, hopefully numerify() doesn't actually do what the docs describe in this case. --- docs/formatters/numbers-and-strings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/formatters/numbers-and-strings.md b/docs/formatters/numbers-and-strings.md index 45ea692a..3e627ecc 100644 --- a/docs/formatters/numbers-and-strings.md +++ b/docs/formatters/numbers-and-strings.md @@ -140,7 +140,7 @@ echo $faker->shuffle([1, 2, 3]); ## `numerify` -Generate a string where all `#` characters are replaced by digits between 0 and 10. By default, `###` is used as input. +Generate a string where all `#` characters are replaced by digits between 0 and 9. By default, `###` is used as input. ```php echo $faker->numerify();