3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 01:48:38 +02:00

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 # These are set automatically by the build/commit script
use constant { use constant {
BUILD_NAME => "PBot", BUILD_NAME => "PBot",
BUILD_REVISION => 726, BUILD_REVISION => 727,
BUILD_DATE => "2014-07-10", BUILD_DATE => "2014-07-10",
}; };

View File

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