File: 0001_fix-typo-in-manpage.patch

package info (click to toggle)
libclass-ehierarchy-perl 0.93-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 308 kB
  • ctags: 130
  • sloc: perl: 758; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 1,008 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Description: fix typo
Author: Lucas Kanashiro <kanashiro@debian.org>
Last-Updated: 2016-06-29
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=115733
Bug: https://rt.cpan.org/Ticket/Display.html?id=115733

--- a/lib/Class/EHierarchy.pm
+++ b/lib/Class/EHierarchy.pm
@@ -1149,7 +1149,7 @@ use constant CEH_NO_UNDEF => 512;
 
     sub exists ($$$) {
 
-        # Purpose:  checks the existance of a key in the property hash
+        # Purpose:  checks the existence of a key in the property hash
         # Returns:  The return value of CORE::exists
         # Usage:    $rv = $obj->exists($prop, $key);
 
@@ -1921,7 +1921,7 @@ returns the return value from the B<shif
 
     $rv = $obj->exists($prop, $key);
 
-This method checks for the existance of the specified key in the hash
+This method checks for the existence of the specified key in the hash
 property.  Calling this method on any non-hash property will cause the program
 to croack.  It returns the return value from the B<exists> function.