Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix example in SYNOPSIS section of documentation #10

Merged
merged 2 commits into from
Oct 24, 2015
Merged
Changes from 1 commit
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
Prev Previous commit
fix syntax error on validator_has_errors example
  • Loading branch information
joenio committed Oct 23, 2015
commit 1548c761de67455184a6d9a7447cc91c62c60a51
2 changes: 1 addition & 1 deletion lib/Mojolicious/Plugin/ValidateTiny.pm
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ Check if there are any errors.
$self->render_text( $self->validator_any_error );
}

%= if (validator_has_errors) {
% if (validator_has_errors) {
<div class="error">Please, correct the errors below.</div>
% }

Expand Down