diff --git a/lib/WebGUI/Shop/PayDriver.pm b/lib/WebGUI/Shop/PayDriver.pm index 8c2179812..aaf1bd6e6 100644 --- a/lib/WebGUI/Shop/PayDriver.pm +++ b/lib/WebGUI/Shop/PayDriver.pm @@ -21,13 +21,13 @@ Package WebGUI::Shop::PayDriver =head1 DESCRIPTION -This package is the base class for all modules which implement a pyament driver. +This package is the base class for all modules which implement a payment driver. =head1 SYNOPSIS use WebGUI::Shop::PayDriver; - my $tax = WebGUI::Shop::PayDriver->new($session); + my $payDriver = WebGUI::Shop::PayDriver->new($session); =head1 METHODS diff --git a/lib/WebGUI/Shop/TaxDriver.pm b/lib/WebGUI/Shop/TaxDriver.pm index e469c4aec..70ed0d208 100644 --- a/lib/WebGUI/Shop/TaxDriver.pm +++ b/lib/WebGUI/Shop/TaxDriver.pm @@ -1,5 +1,25 @@ package WebGUI::Shop::TaxDriver; +=head1 NAME + +Package WebGUI::Shop::TaxDriver + +=head1 DESCRIPTION + +This package is the base class for all modules which implement a tax driver. + +=head1 SYNOPSIS + + use WebGUI::Shop::TaxDriver; + + my $taxDriver = WebGUI::Shop::TaxDriver->new($session); + +=head1 METHODS + +These subroutines are available from this package: + +=cut + use strict; use Class::InsideOut qw{ :std }; @@ -98,8 +118,6 @@ The sku for which the tax rate must be determined. Should be a WebGUI::Asset::Sk Optional, the shipping address for which to calculate the tax. Must be an instance of WebGUI::Shop::Address. -=head - =cut sub getTaxRate {