File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -16,16 +16,16 @@ bulk generation of random strings.
1616=cut
1717
1818print " \n " ;
19- print " = " x 70 , " \n " ;
19+ print ' = ' x 70 , " \n " ;
2020print " BULK GENERATION EXAMPLES\n " ;
21- print " = " x 70 , " \n\n " ;
21+ print ' = ' x 70 , " \n\n " ;
2222
2323# ===========================================================================
2424# EXAMPLE 1: Database Seeding
2525# ===========================================================================
2626
2727print " EXAMPLE 1: Database Seeding\n " ;
28- print " - " x 70 , " \n\n " ;
28+ print ' - ' x 70 , " \n\n " ;
2929
3030{
3131 print " Generating 1000 product codes for database seeding...\n " ;
@@ -359,6 +359,4 @@ Bulk generation is faster than individual calls:
359359
360360L<Data::Random::String::Matches>
361361
362- L<docs/generate_many.md> for detailed documentation
363-
364362=cut
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ sub generate {
223223
224224 # If smart approach failed, show warning in debug mode
225225 if ($ENV {DEBUG_REGEX_GEN } && $@ ) {
226- warn " Smart generation failed: $@ \n " ;
226+ warn " Smart generation failed: $@ " ;
227227 }
228228
229229 # Fall back to brute force with character set matching
You can’t perform that action at this time.
0 commit comments