The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 14
META.json 11
META.yml 11
Makefile.PL 10
README 11
lib/Net/Netmask.pm 11
lib/Net/Netmask.pod 11
7 files changed (This is a version diff) 79
@@ -1,8 +1,11 @@
 
 Revision history for Perl module Net::Netmask
 
+1.9021 2014-07-17
 
-1.9019 1013-10-01
+ - Spelling fix in documentation.
+
+1.9019 2013-10-01
 
  - Rename $b to $bits so that netmask can be sorted.  Change mostly
    from https://rt.cpan.org/Ticket/Display.html?id=76939
@@ -40,5 +40,5 @@
          "url" : "http://github.com/muir/Net-Netmask"
       }
    },
-   "version" : "1.9019"
+   "version" : "1.9021"
 }
@@ -20,4 +20,4 @@ no_index:
 requires: {}
 resources:
   repository: http://github.com/muir/Net-Netmask
-version: 1.9019
+version: 1.9021
@@ -10,7 +10,6 @@ WriteMakefile(
 	($] >= 5.005 
 		?	
 			(
-				ABSTRACT	=> 'Receive mail via SMTP',
 				ABSTRACT	=> 'Understand and manipulate IP netmaks',
 				AUTHOR		=> 'David Muir Sharnoff <cpan@dave.sharnoff.org>',
 				META_MERGE     => {
@@ -187,7 +187,7 @@ METHODS
                              enumerate would return if it were called. So,
                              to get the first usable address in a block, use
                              nth(1). To get the broadcast address, use
-                             nth(-1). To get the last usable adress, use
+                             nth(-1). To get the last usable address, use
                              nth(-2).
 
     ->inaddr()               Returns an inline list of tuples. There is a
@@ -3,7 +3,7 @@
 package Net::Netmask;
 
 use vars qw($VERSION);
-$VERSION = 1.9019;
+$VERSION = 1.9021;
 
 require Exporter;
 @ISA = qw(Exporter);
@@ -226,7 +226,7 @@ of 30 (as in a /30 network).
 Returns the nth element of the array that B<enumerate> would return
 if it were called.  So, to get the first usable address in a block,
 use B<nth>(1).  To get the broadcast address, use B<nth>(-1).  To
-get the last usable adress, use B<nth>(-2).
+get the last usable address, use B<nth>(-2).
 
 =item ->B<inaddr>()