diff options
author | Steven Schubiger <schubiger@cpan.org> | 2005-10-31 23:48:27 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-11-10 10:52:51 +0000 |
commit | 4358a253560c226dd674c77f83b913c071c4fa25 (patch) | |
tree | d5881aefffcd9b943217161889e849dfb97df0ec /pod/perl56delta.pod | |
parent | 42d1cefd9a529012253aff0d502edf7a4f6a6ac3 (diff) | |
download | perl-4358a253560c226dd674c77f83b913c071c4fa25.tar.gz |
remove whitespace preceding semicolon in docs
Message-ID: <20051031214827.GH24416@accognoscere.homeunix.org>
p4raw-id: //depot/perl@26073
Diffstat (limited to 'pod/perl56delta.pod')
-rw-r--r-- | pod/perl56delta.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perl56delta.pod b/pod/perl56delta.pod index b5425b2486..89d62371d8 100644 --- a/pod/perl56delta.pod +++ b/pod/perl56delta.pod @@ -165,13 +165,13 @@ as requiring an automatic lock() when it is entered, you had to declare that with a C<use attrs> pragma in the body of the subroutine. That can now be accomplished with declaration syntax, like this: - sub mymethod : locked method ; + sub mymethod : locked method; ... sub mymethod : locked method { ... } - sub othermethod :locked :method ; + sub othermethod :locked :method; ... sub othermethod :locked :method { ... |