summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2018-02-20 09:35:21 +0000
committerDavid Mitchell <davem@iabyn.com>2018-02-20 10:13:55 +0000
commit9264a512e01cec6839e1be594c2cae2a2c4379b5 (patch)
tree0e215e1c4aa7553bf1c6237682df9b56ab89fc1b
parent9f290a905d1159e62486ba710d53d455c667d4c6 (diff)
downloadperl-9264a512e01cec6839e1be594c2cae2a2c4379b5.tar.gz
fix nit in perl5278delta.pod
RT #132776 The :lvalue sub examples didn't have a valid body for an lvalue sub; I've replaced the '1' with '...'
-rw-r--r--pod/perl5278delta.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perl5278delta.pod b/pod/perl5278delta.pod
index f9f51aa185..ee048d3bef 100644
--- a/pod/perl5278delta.pod
+++ b/pod/perl5278delta.pod
@@ -92,8 +92,8 @@ compilation of code within the signature, for example:
Note that this the second time they have been flipped:
- sub f :lvalue ($a, $b) { 1 }; # 5.20; 5.28 onwards
- sub f ($a, $b) :lvalue { 1 }; # 5.22 - 5.26
+ sub f :lvalue ($a, $b) { ... }; # 5.20; 5.28 onwards
+ sub f ($a, $b) :lvalue { ... }; # 5.22 - 5.26
=head1 Deprecations