Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/Perl/Critic/Policy/PG/ProhibitBeginproblem.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use Perl::Critic::Utils qw(:severities :classification :ppi);

use WeBWorK::PG::Critic::Utils qw(getDeprecatedMacros);

use constant DESCRIPTION => 'The beingproblem function is called';
use constant EXPLANATION => 'The beingproblem function no longer does anything and should be removed.';
use constant DESCRIPTION => 'The beginproblem function is called';
use constant EXPLANATION => 'The beginproblem function no longer does anything and should be removed.';
use constant SCORE => 5;

sub supported_parameters ($) {return}
Expand All @@ -25,12 +25,12 @@ __END__

=head1 NAME

Perl::Critic::Policy::PG::ProhibitBeginproblem - The C<beingproblem> function is
Perl::Critic::Policy::PG::ProhibitBeginproblem - The C<beginproblem> function is
deprecated, no longer does anything, and should be removed from all problems.

=head1 DESCRIPTION

The C<beingproblem> function is deprecated, no longer does anything, and should
The C<beginproblem> function is deprecated, no longer does anything, and should
be removed from all problems.

=cut
Loading