File: pod-spelling

package info (click to toggle)
libclass-prototyped-perl 1.13-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 560 kB
  • ctags: 291
  • sloc: perl: 1,456; makefile: 8
file content (14 lines) | stat: -rw-r--r-- 589 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Author: Russ Allbery <rra@debian.org>
Description: Fix spelling error in POD documentation

--- 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>.