CGrammar: Change "Repeatedly never" to "Never repeatedly"

This commit is contained in:
Pragmatic Software 2014-07-10 13:13:57 +00:00
parent bea4480cf3
commit 69eca9a336
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ use warnings;
# These are set automatically by the build/commit script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 726,
BUILD_REVISION => 727,
BUILD_DATE => "2014-07-10",
};

View File

@ -262,7 +262,7 @@ iteration_statement:
if (length $expression) {
if ($expression =~ /^(\d+)$/) {
if($expression == 0) {
$return .= "Repeatedly never ^L";
$return .= "Never repeatedly ^L";
} else {
$return .= "Repeatedly ^L";
}
@ -285,7 +285,7 @@ iteration_statement:
{
if ($item{expression} =~ /(^\d+$)/) {
if ($1 == 0) {
$return = "Repeatedly never ^L";
$return = "Never repeatedly ^L";
} else {
$return = "Repeatedly ^L";
}