diff options
author | Frank Wiegand <frank.wiegand@gmail.com> | 2009-11-19 12:34:20 +0100 |
---|---|---|
committer | Abigail <abigail@abigail.be> | 2009-11-19 14:30:37 +0100 |
commit | d5213412bf7e51630c57470e49cc6b127a508ed6 (patch) | |
tree | c70598e4d6d0831f3d739dae7e96abc842ea9578 /pod/perlreapi.pod | |
parent | 08fc25adb28b667408639f0458cda3d8f55bac70 (diff) | |
download | perl-d5213412bf7e51630c57470e49cc6b127a508ed6.tar.gz |
Fix POD: C<...->...> => C<< ...-> ... >>
Signed-off-by: Abigail <abigail@abigail.be>
Diffstat (limited to 'pod/perlreapi.pod')
-rw-r--r-- | pod/perlreapi.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlreapi.pod b/pod/perlreapi.pod index 03996fd51e..d1d947b8a7 100644 --- a/pod/perlreapi.pod +++ b/pod/perlreapi.pod @@ -410,7 +410,7 @@ name for identification regardless of whether they implement methods on the object. The package this method returns should also have the internal -C<Regexp> package in its C<@ISA>. C<qr//->isa("Regexp")> should always +C<Regexp> package in its C<@ISA>. C<< qr//->isa("Regexp") >> should always be true regardless of what engine is being used. Example implementation might be: |