summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2021-10-13 09:15:51 -0600
committerKarl Williamson <khw@cpan.org>2021-10-13 10:15:43 -0600
commit91c7e1725713e55c13fcdaaef828016733e77ff1 (patch)
tree6c66988cd388bcb774bbacb72d44e04d9ae39805
parentc44af6e357f211a32d6942d405451f8003ff808c (diff)
downloadperl-91c7e1725713e55c13fcdaaef828016733e77ff1.tar.gz
perlhacktips: Fix typo
-rw-r--r--pod/perlhacktips.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlhacktips.pod b/pod/perlhacktips.pod
index 1f48d6c561..a57cb34aea 100644
--- a/pod/perlhacktips.pod
+++ b/pod/perlhacktips.pod
@@ -677,7 +677,7 @@ Using gcc statement expressions
val = ({...;...;...}); /* BAD */
-While a nice extension, it's not portable. Historically the Perl used
+While a nice extension, it's not portable. Historically, Perl used
them in macros if available to gain some extra speed (essentially
as a funky form of inlining), but we now support (or emulate) C99
C<static inline> functions, so use them instead. Declare functions as