Fix POD problems

This commit is contained in:
Colin Kuskie 2010-05-07 18:27:39 -07:00
parent 3d34cf3323
commit 1450d1361d
2 changed files with 13 additions and 9 deletions

View file

@ -1975,7 +1975,7 @@ sub prepareShowSurveyTemplate {
Serializes the SurveyJSON instance and persists it to the database.
Calling this method is only required if you have directly accessed and modified
the L<"surveyJSON"> object.
the L<WebGUI::Asset::Wobject::Survey::surveyJSON> object.
=cut

View file

@ -3,16 +3,16 @@ package WebGUI::Test::Activity;
use WebGUI::Workflow;
use WebGUI::Test;
=head Name
=head1 Name
package WebGUI::Test::Activity;
=head Description
=head1 Description
This package encapsulates the code required to run
an activity.
=head Usage
=head1 Usage
use WebGUI::Test::Activity;
@ -27,17 +27,21 @@ is( $instance->run, 'complete', 'activity complete' );
is( $instance->run, 'done', 'activity done' );
$instance->delete;
=head methods
=head1 methods
=head2 create
=params
=head3 session
session -- the session variable
the session variable
class -- the class for the activity to run
=head3 class
params -- params to set in the workflow
the class for the activity to run
=head3 params
params to set in the workflow
=cut