Skip to content

Commit f116e29

Browse files
committed
Remove broken link
1 parent 58455e3 commit f116e29

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

examples/bulk-generation

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ bulk generation of random strings.
1616
=cut
1717

1818
print "\n";
19-
print "=" x 70, "\n";
19+
print '=' x 70, "\n";
2020
print "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

2727
print "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
360360
L<Data::Random::String::Matches>
361361
362-
L<docs/generate_many.md> for detailed documentation
363-
364362
=cut

lib/Data/Random/String/Matches.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)