diff --git a/articles/perl.md b/articles/perl.md index 2487f51..b2be4cf 100644 --- a/articles/perl.md +++ b/articles/perl.md @@ -40,7 +40,7 @@ use v5.34; # enables `say`, `defer`, `try`-`catch` and more... ``` ### Automatically die on any error -This makes a Perl script commit suicide if any error is raised (akin to Bash's `set -e`): +This makes a Perl script commit suicide if any error is raised (akin to shell script `set -e`): ```perl use autodie; ```