summaryrefslogtreecommitdiff
path: root/pod/perlfunc.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-12-06 13:35:31 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-12-06 13:35:31 +0000
commit0f31cffe78d3a5cfa348eb1c3208e5daec5777d9 (patch)
treec9c2a9068c94d6f51785102caabd99baed4a564d /pod/perlfunc.pod
parent0cc1d052f2b5aa0a485e4a60aabe91829ddbe78c (diff)
downloadperl-0f31cffe78d3a5cfa348eb1c3208e5daec5777d9.tar.gz
fix outdated/incorrect info about arbitrary limits
p4raw-id: //depot/perl@2454
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r--pod/perlfunc.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 557d418546..702d8bffac 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -15,7 +15,7 @@ operator. A unary operator generally provides a scalar context to its
argument, while a list operator may provide either scalar and list
contexts for its arguments. If it does both, the scalar arguments will
be first, and the list argument will follow. (Note that there can ever
-be only one list argument.) For instance, splice() has three scalar
+be only one such list argument.) For instance, splice() has three scalar
arguments followed by a list.
In the syntax descriptions that follow, list operators that expect a
@@ -1473,7 +1473,7 @@ L</last>, L</next>, and L</redo> for additional control flow.
Enter BLOCK as LOOPVAR set in turn to each element of LIST.
For example:
- foreach $rolling (@stones) { print "rolling $stone\n" }
+ foreach $rolling (@stones) { print "$rolling stone\n" }
foreach my $file (@files) { print "file $file\n" }