about summary refs log tree commit
diff options
context:
space:
mode:
-rw-r--r--Net/Netrc.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Net/Netrc.pm b/Net/Netrc.pm
index 57e965e..02716fe 100644
--- a/Net/Netrc.pm
+++ b/Net/Netrc.pm
@@ -27,7 +27,7 @@ sub _readrc {
   }
   else {
 
-    # Some OS's don't have `getpwuid', so we default to $ENV{HOME}
+    # Some OS's don't have "getpwuid", so we default to $ENV{HOME}
     $home = eval { (getpwuid($>))[7] } || $ENV{HOME};
     $home ||= $ENV{HOMEDRIVE} . ($ENV{HOMEPATH} || '') if defined $ENV{HOMEDRIVE};
     if (-e $home . "/.netrc") {
@@ -47,7 +47,7 @@ sub _readrc {
 
   $netrc{default} = undef;
 
-  # OS/2 and Win32 do not handle stat in a way compatable with this check :-(
+  # OS/2 and Win32 do not handle stat in a way compatible with this check :-(
   unless ($^O eq 'os2'
     || $^O eq 'MSWin32'
     || $^O eq 'MacOS'