X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FPackage%2FVariant.pm;h=fca5a493f7dad1b3ac5e15605b3f80e603187aa8;hb=328258e027e8c41f5c23ddc061d69fde923138f4;hp=df28466aabb9af47953a9301fa117cbbabcb26cd;hpb=cfcf68cbe12903dfea4c6c3d1941505094494329;p=p5sagit%2FPackage-Variant.git diff --git a/lib/Package/Variant.pm b/lib/Package/Variant.pm index df28466..fca5a49 100644 --- a/lib/Package/Variant.pm +++ b/lib/Package/Variant.pm @@ -5,7 +5,7 @@ use Import::Into; use Module::Runtime qw(use_module); use Carp qw(croak); -our $VERSION = '1.001003'; # 1.1.3 +our $VERSION = '1.001004'; # 1.1.4 $VERSION = eval $VERSION; @@ -161,7 +161,7 @@ This module allows you to build packages that return different variations depending on what parameters are given. Users of your package will receive a subroutine able to take parameters -and return the name of a suitable variant package. The implmenetation does +and return the name of a suitable variant package. The implementation does not care about what kind of package it builds. =head2 Declaring a variable package @@ -285,7 +285,7 @@ also pass a string instead: An array reference of strings listing the names of subroutines that should be proxied. These subroutines are expected to be installed into the new variant package by the modules imported with L. Subroutines -with the same name will be availabe in your declaration package, and will +with the same name will be available in your declaration package, and will proxy through to the newly created package when used within L.