From e4ccf69cd1d6ed95aed09a90bb6041a8517386ed Mon Sep 17 00:00:00 2001 From: Lukas Mai Date: Wed, 19 Mar 2025 11:03:52 +0100 Subject: [PATCH] perlhacktips: fix trivial typos ``. `S I>>` had one `>` too many. --- pod/perlhacktips.pod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pod/perlhacktips.pod b/pod/perlhacktips.pod index 3ce151c3afb5..b6f80a7a6e92 100644 --- a/pod/perlhacktips.pod +++ b/pod/perlhacktips.pod @@ -236,7 +236,7 @@ support their use. booleans -You can use C, C, and C as provided by C<< > +You can use C, C, and C as provided by C<< >> (or natively in C++). =back @@ -2121,7 +2121,7 @@ C99, and so some workarounds were created. The C and C macros are still available as alternatives for C and C. And the C macro was created to correctly cast to a true/false value in all circumstances, but should no longer be necessary. Using -S I>> should now always work. +S I> should now always work. There are no plans to remove any of C, C, nor C.