diff options
author | Dan Book <grinnz@grinnz.com> | 2020-10-13 21:58:14 -0400 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-10-14 08:48:24 -0600 |
commit | e11b30f706be2725ff8a0aaa114f6a472e2512e5 (patch) | |
tree | 07cba5e88c9a9081185c422b6c08b02f18815f87 | |
parent | 526e4b9dadeed7e61d0154aceb7927fb02dd85bb (diff) | |
download | perl-e11b30f706be2725ff8a0aaa114f6a472e2512e5.tar.gz |
perlsub - Link to constant pragma
-rw-r--r-- | pod/perlsub.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlsub.pod b/pod/perlsub.pod index b541ea54ab..629a273d0c 100644 --- a/pod/perlsub.pod +++ b/pod/perlsub.pod @@ -1652,7 +1652,7 @@ inlining. If the result after optimization and constant folding is either a constant or a lexically-scoped scalar which has no other references, then it will be used in place of function calls made without C<&>. Calls made using C<&> are never inlined. (See -F<constant.pm> for an easy way to declare most constants.) +L<constant> for an easy way to declare most constants.) The following functions would all be inlined: |