Skip to content

Commit 917e6a8

Browse files
committed
perlclass.pod: reflow for line wrapping; remove blank line at EOF
1 parent 216142a commit 917e6a8

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

pod/perlclass.pod

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ provider native keywords supporting object oriented programming paradigm.
2828

2929
=head2 History
3030

31-
Since Perl 5, support for objects resolved around the concept of
32-
I<blessing> references with a package name. Such reference could then be used
33-
to call subroutines from the package it was blessed with (or any of its
34-
parents). This system, while bare-bones, was flexible enough to allow creation
35-
of multiple more advanced, community-driven systems for object orientation.
31+
Since Perl 5, support for objects resolved around the concept of I<blessing>
32+
references with a package name. Such reference could then be used to call
33+
subroutines from the package it was blessed with (or any of its parents). This
34+
system, while bare-bones, was flexible enough to allow creation of multiple
35+
more advanced, community-driven systems for object orientation.
3636

3737
Class feature is a core implementation of class syntax which is familiar to
3838
what one would find in other programming languages. It isn't a C<bless>
@@ -98,8 +98,8 @@ access different values in the same scope.
9898

9999
Methods are subroutines intended to be called in the context of class objects.
100100

101-
A variable named C<$self> populated with the current object instance will automatically be
102-
created in the lexical scope of C<method>.
101+
A variable named C<$self> populated with the current object instance will
102+
automatically be created in the lexical scope of C<method>.
103103

104104
Methods always act as if C<use feature 'signatures'> is in effect, but C<$self>
105105
will not appear in the arguments list as far as the signature is concerned.
@@ -207,4 +207,3 @@ Paul Evans
207207
Bartosz Jarzyna
208208

209209
=cut
210-

0 commit comments

Comments
 (0)