@@ -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
3737Class feature is a core implementation of class syntax which is familiar to
3838what 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
9999Methods 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
104104Methods always act as if C<use feature 'signatures'> is in effect, but C<$self>
105105will not appear in the arguments list as far as the signature is concerned.
@@ -207,4 +207,3 @@ Paul Evans
207207Bartosz Jarzyna
208208
209209=cut
210-
0 commit comments