c2english/CGrammar: fix translation of `[static n]` in array parameters

This commit is contained in:
Pragmatic Software 2024-06-12 14:22:26 -07:00
parent 0786ee03a3
commit 784c2508e5
No known key found for this signature in database
GPG Key ID: CC916B6E3C84ECCE
2 changed files with 3 additions and 3 deletions

View File

@ -1424,7 +1424,7 @@ array_declarator:
} else {
$return = "an array ";
}
$return .= "with optimization hint to provide access to the first element of $size of";
$return .= "with at least $size of";
} else {
$return = "an $qualifiers array of $size of";
}

View File

@ -25,8 +25,8 @@ use PBot::Imports;
# These are set by the /misc/update_version script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 4760,
BUILD_DATE => "2024-06-08",
BUILD_REVISION => 4761,
BUILD_DATE => "2024-06-12",
};
sub initialize {}