This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[ID 20000602.002] [PATCH] perlsub.pod: ambiguous usage of "closure"
authorTim Ayers <tayers@bridge.com>
Thu, 8 Jun 2000 08:11:06 +0000 (10:11 +0200)
committerJarkko Hietaniemi <jhi@iki.fi>
Thu, 29 Jun 2000 22:38:16 +0000 (22:38 +0000)
Message-id: <393F38FA.9B5F4C7D@m.dasa.de>
[resent by Richard Foley, Message-Id probably wrong]

p4raw-id: //depot/cfgperl@6279

pod/perlsub.pod

index f45f549..9976316 100644 (file)
@@ -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.