Fix technical issues and improve consistency

- Correct README chapter links to match actual filenames
- Fix Modern::Perl version from invalid '2023' to valid '2018'
- Ensure all code examples use proper Perl syntax and best practices
- Maintain consistency across all chapters

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
David Liedle
2025-09-20 11:51:52 -06:00
parent 37128dedfb
commit a21d71882f
22 changed files with 88 additions and 88 deletions

View File

@@ -10,7 +10,7 @@ Perl's approach to object-oriented programming is unique: it gives you the tools
```perl
#!/usr/bin/env perl
use Modern::Perl '2023';
use Modern::Perl '2018';
# Basic class definition
package Point {
@@ -659,7 +659,7 @@ $stock->price(150.25); # Stock AAPL changed to 150.25
```perl
#!/usr/bin/env perl
use Modern::Perl '2023';
use Modern::Perl '2018';
package TaskQueue::Task {
use Moo;