From d23649fcd9a463ba9adb4f9ed4cd7b3c34a0d783 Mon Sep 17 00:00:00 2001 From: tocariimaa Date: Tue, 4 Mar 2025 00:42:18 -0300 Subject: [PATCH] articles/perl.md: update --- articles/perl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;