summaryrefslogtreecommitdiff
path: root/pod/perlobj.pod
diff options
context:
space:
mode:
authorDave Rolsky <autarch@urth.org>2011-09-08 21:58:12 -0500
committerDave Rolsky <autarch@urth.org>2011-09-08 21:58:12 -0500
commit00c07ea69e51df3ed3717164a70b029c28c72e19 (patch)
tree3f7d3f209c0abfc23003188a0ed63036394a15e5 /pod/perlobj.pod
parent8d26c1a8bd893a62081d2eaa43eba0bcc6864b37 (diff)
downloadperl-00c07ea69e51df3ed3717164a70b029c28c72e19.tar.gz
Tweak line length of comment in verbatim section per podcheck.t
Diffstat (limited to 'pod/perlobj.pod')
-rw-r--r--pod/perlobj.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlobj.pod b/pod/perlobj.pod
index 2fa1aa220c..c94a5ca1a2 100644
--- a/pod/perlobj.pod
+++ b/pod/perlobj.pod
@@ -787,8 +787,8 @@ C<$AUTOLOAD> package global for your class. Since this is a global, if
you want to refer to do it without a package name prefix under L<strict
'vars'>xs, you need to declare it.
- # XXX - this is a terrible way to implement accessors, but it makes for a
- # simple example.
+ # XXX - this is a terrible way to implement accessors, but it makes
+ # for a simple example.
our $AUTOLOAD;
sub AUTOLOAD {
my $self = shift;