about summary refs log tree commit
diff options
context:
space:
mode:
authorDavid Steinbrunner <dsteinbrunner@pobox.com>2013-05-30 09:22:10 -0300
committerDavid Steinbrunner <dsteinbrunner@pobox.com>2013-05-30 09:22:10 -0300
commitb07059b0df5feff2321b5ddaa6ee7adf50d61f32 (patch)
tree5f55157a75c472ac243f7764659b64510cd8ad0e
parent54453c735819ae5ed4113e7a232fab4a564a212f (diff)
downloadperl-libnet-b07059b0df5feff2321b5ddaa6ee7adf50d61f32.tar.gz
typo fixes
-rw-r--r--Net/SMTP.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Net/SMTP.pm b/Net/SMTP.pm
index 9abb115..96f0e35 100644
--- a/Net/SMTP.pm
+++ b/Net/SMTP.pm
@@ -147,9 +147,9 @@ sub auth {
   my $client = $sasl->client_new('smtp', ${*$self}{'net_smtp_host'}, 0);
   my $str    = $client->client_start;
 
-  # We dont support sasl mechanisms that encrypt the socket traffic.
+  # We don't support sasl mechanisms that encrypt the socket traffic.
   # todo that we would really need to change the ISA hierarchy
-  # so we dont inherit from IO::Socket, but instead hold it in an attribute
+  # so we don't inherit from IO::Socket, but instead hold it in an attribute
 
   my @cmd = ("AUTH", $client->mechanism);
   my $code;
@@ -860,7 +860,7 @@ to extract the mail address and pass that.
 
 If C<ExactAddresses> is passed to the constructor, then addresses
 should be a valid rfc2821-quoted address, although Net::SMTP will
-accept accept the address surrounded by angle brackets.
+accept the address surrounded by angle brackets.
 
  funny user@domain      WRONG
  "funny user"@domain    RIGHT, recommended