summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorTim Ayers <tayers@bridge.com>2000-06-08 10:11:06 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2000-06-29 22:38:16 +0000
commit74f5c340ebe31070e7a56e95f9fda2042294a033 (patch)
tree63e38dba01e338e529f3d0740254fe809512a355 /pod
parente2537f5c973a02cd9a7f1612791af7c8170a2e0e (diff)
downloadperl-74f5c340ebe31070e7a56e95f9fda2042294a033.tar.gz
[ID 20000602.002] [PATCH] perlsub.pod: ambiguous usage of "closure"
Message-id: <393F38FA.9B5F4C7D@m.dasa.de> [resent by Richard Foley, Message-Id probably wrong] p4raw-id: //depot/cfgperl@6279
Diffstat (limited to 'pod')
-rw-r--r--pod/perlsub.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlsub.pod b/pod/perlsub.pod
index f45f5494f6..997631674f 100644
--- a/pod/perlsub.pod
+++ b/pod/perlsub.pod
@@ -39,7 +39,7 @@ To call subroutines:
Like many languages, Perl provides for user-defined subroutines.
These may be located anywhere in the main program, loaded in from
other files via the C<do>, C<require>, or C<use> keywords, or
-generated on the fly using C<eval> or anonymous subroutines (closures).
+generated on the fly using C<eval> or anonymous subroutines.
You can even call a function indirectly using a variable containing
its name or a CODE reference.