From bb73a074ebdc95e9ad748f5d975dcf5f511001c1 Mon Sep 17 00:00:00 2001 From: tocariimaa Date: Tue, 4 Mar 2025 17:59:01 -0300 Subject: [PATCH] articles/perl.md: this is standard --- articles/perl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; ```