some POD fixes

This commit is contained in:
Graham Knop 2009-04-23 16:22:22 +00:00
parent f1759f5cd5
commit 0619ec3082
2 changed files with 22 additions and 4 deletions

View file

@ -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

View file

@ -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 {