File: pod-spelling

package info (click to toggle)
libclass-prototyped-perl 1.13-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 548 kB
  • sloc: perl: 1,456; makefile: 11
file content (18 lines) | stat: -rw-r--r-- 778 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Fix spelling error in POD documentation
Author: Russ Allbery <rra@debian.org>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2015-06-01
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=104853
Bug: https://rt.cpan.org/Ticket/Display.html?id=104853

--- a/lib/Class/Prototyped.pm
+++ b/lib/Class/Prototyped.pm
@@ -2321,7 +2321,7 @@
       sub1 => sub { print "this is sub1 in p2" },
   );
 
-It calls C<newCore> to create the new object*, so if you have overriden C<new>, 
+It calls C<newCore> to create the new object*, so if you have overridden C<new>,
 you should contemplate overriding C<clone> in order to ensure that behavioral 
 changes made to C<new> that would be applicable to C<clone> are implemented.  Or 
 simply override C<newCore>.