diff --git a/articles/perl.md b/articles/perl.md index 6fcc119..41eccd9 100644 --- a/articles/perl.md +++ b/articles/perl.md @@ -39,7 +39,7 @@ and all of its features will be enabled: use v5.34; # enables `say`, `defer`, `try`-`catch` and more... ``` -## Automatically die on any error +### Automatically die on any error This makes a Perl script commit suicide if any error is raised (akin to Bash's `set -e`): ```perl use autodie;