about summary refs log tree commit
diff options
context:
space:
mode:
authorGraham Barr <gbarr@pobox.com>2005-08-03 00:33:54 +0000
committerGraham Barr <gbarr@pobox.com>2009-02-24 10:40:47 -0600
commit3068255c9557cb6891bc82d3117ee7a9c438cb2c (patch)
treef70b808ef6ca6d00e0ff9c28ed0e5ea5b4568b2e
parent35c01301914f4e4c8f8370ed37477dc6efd910f5 (diff)
downloadperl-libnet-3068255c9557cb6891bc82d3117ee7a9c438cb2c.tar.gz
Fix POD typos (from Piotr Fusik)
-rw-r--r--Net/Cmd.pm2
-rw-r--r--Net/Config.pm6
-rw-r--r--Net/FTP.pm12
-rw-r--r--Net/NNTP.pm2
-rw-r--r--Net/POP3.pm4
-rw-r--r--Net/SMTP.pm4
6 files changed, 15 insertions, 15 deletions
diff --git a/Net/Cmd.pm b/Net/Cmd.pm
index a84b4da..f1e436d 100644
--- a/Net/Cmd.pm
+++ b/Net/Cmd.pm
@@ -748,7 +748,7 @@ Returns a filehandle tied to the Net::Cmd object.  After issuing a
 command, you may read from this filehandle using read() or <>.  The
 filehandle will return EOF when the final dot is encountered.
 Similarly, you may write to the filehandle in order to send data to
-the server after issuing a commmand that expects data to be written.
+the server after issuing a command that expects data to be written.
 
 See the Net::POP3 and Net::SMTP modules for examples of this.
 
diff --git a/Net/Config.pm b/Net/Config.pm
index 8984ed7..a502abe 100644
--- a/Net/Config.pm
+++ b/Net/Config.pm
@@ -129,7 +129,7 @@ Net::Config - Local configuration data for libnet
 =head1 DESCRIPTION
 
 C<Net::Config> holds configuration data for the modules in the libnet
-distribuion. During installation you will be asked for these values.
+distribution. During installation you will be asked for these values.
 
 The configuration data is held globally in a file in the perl installation
 tree, but a user may override any of these values by providing their own. This
@@ -139,7 +139,7 @@ For example
 
     # .libnetrc
     {
-        nntp_hosts => [ "my_prefered_host" ],
+        nntp_hosts => [ "my_preferred_host" ],
         ph_hosts   => [ "my_ph_server" ],
     }
     __END__
@@ -267,7 +267,7 @@ There is no firewall
 
 =item ftp_ext_passive
 
-=item ftp_int_pasive
+=item ftp_int_passive
 
 FTP servers normally work on a non-passive mode. That is when you want to
 transfer data you have to tell the server the address and port to
diff --git a/Net/FTP.pm b/Net/FTP.pm
index 2cbb4d9..a51b205 100644
--- a/Net/FTP.pm
+++ b/Net/FTP.pm
@@ -1324,7 +1324,7 @@ B<Firewall> - The name of a machine which acts as an FTP firewall. This can be
 overridden by an environment variable C<FTP_FIREWALL>. If specified, and the
 given host cannot be directly connected to, then the
 connection is made to the firewall machine and the string C<@hostname> is
-appended to the login identifier. This kind of setup is also refered to
+appended to the login identifier. This kind of setup is also referred to
 as an ftp proxy.
 
 B<FirewallType> - The type of firewall running on the machine indicated by
@@ -1451,7 +1451,7 @@ Returns the full pathname to the new directory.
 =item alloc ( SIZE [, RECORD_SIZE] )
 
 The alloc command allows you to give the ftp server a hint about the size
-of the file about to be transfered using the ALLO ftp command. Some storage
+of the file about to be transferred using the ALLO ftp command. Some storage
 systems use this to make intelligent decisions about how to store the file.
 The C<SIZE> argument represents the size of the file in bytes. The
 C<RECORD_SIZE> argument indicates a mazimum record or page size for files
@@ -1459,7 +1459,7 @@ sent with a record or page structure.
 
 The size of the file will be determined, and sent to the server
 automatically for normal files so that this method need only be called if
-you are transfering data from a socket, named pipe, or other stream not
+you are transferring data from a socket, named pipe, or other stream not
 associated with a normal file.
 
 =item ls ( [ DIR ] )
@@ -1483,7 +1483,7 @@ a filename or a filehandle. If not specified, the file will be stored in
 the current directory with the same leafname as the remote file.
 
 If C<WHERE> is given then the first C<WHERE> bytes of the file will
-not be transfered, and the remaining bytes will be appended to
+not be transferred, and the remaining bytes will be appended to
 the local file if it already exists.
 
 Returns C<LOCAL_FILE>, or the generated local file name if C<LOCAL_FILE>
@@ -1500,7 +1500,7 @@ Returns C<REMOTE_FILE>, or the generated remote filename if C<REMOTE_FILE>
 is not given.
 
 B<NOTE>: If for some reason the transfer does not complete and an error is
-returned then the contents that had been transfered will not be remove
+returned then the contents that had been transferred will not be remove
 automatically.
 
 =item put_unique ( LOCAL_FILE [, REMOTE_FILE ] )
@@ -1530,7 +1530,7 @@ Returns the I<modification time> of the given file
 Returns the size in bytes for the given file as stored on the remote server.
 
 B<NOTE>: The size reported is the size of the stored file on the remote server.
-If the file is subsequently transfered from the server in ASCII mode
+If the file is subsequently transferred from the server in ASCII mode
 and the remote server and local machine have different ideas about
 "End Of Line" then the size of file on the local machine after transfer
 may be different.
diff --git a/Net/NNTP.pm b/Net/NNTP.pm
index f9a6ddf..0467a80 100644
--- a/Net/NNTP.pm
+++ b/Net/NNTP.pm
@@ -767,7 +767,7 @@ specified article.
 If C<FH> is specified then it is expected to be a valid filehandle
 and the result will be printed to it, on success a true value will be
 returned. If C<FH> is not specified then the return value, on success,
-will be a reference to an array containg the article requested, each
+will be a reference to an array containing the article requested, each
 entry in the array will contain one line of the article.
 
 If no arguments are passed then the current article in the currently
diff --git a/Net/POP3.pm b/Net/POP3.pm
index a04e12a..510d186 100644
--- a/Net/POP3.pm
+++ b/Net/POP3.pm
@@ -572,7 +572,7 @@ Return the sever's connection banner
 
 =item capa ()
 
-Return a reference to a hash of the capabilties of the server.  APOP
+Return a reference to a hash of the capabilities of the server.  APOP
 is added as a pseudo capability.  Note that I've been unable to
 find a list of the standard capability values, and some appear to
 be multi-word and some are not.  We make an attempt at intelligently
@@ -639,7 +639,7 @@ when the server connection closed.
 
 =item reset ()
 
-Reset the status of the remote POP3 server. This includes reseting the
+Reset the status of the remote POP3 server. This includes resetting the
 status of all messages to not be deleted.
 
 =item quit ()
diff --git a/Net/SMTP.pm b/Net/SMTP.pm
index 985c647..a722f6b 100644
--- a/Net/SMTP.pm
+++ b/Net/SMTP.pm
@@ -824,11 +824,11 @@ Send the QUIT command to the remote SMTP server and close the socket connection.
 
 Net::SMTP attempts to DWIM with addresses that are passed. For
 example an application might extract The From: line from an email
-and pass that to mail(). While this may work, it is not reccomended.
+and pass that to mail(). While this may work, it is not recommended.
 The application should really use a module like L<Mail::Address>
 to extract the mail address and pass that.
 
-If C<ExactAddresses> is passed to the contructor, then addresses
+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.