bindings: use better word in comment

This commit is contained in:
Andrzej Rybczak
2012-09-15 00:25:56 +02:00
parent 66b799cd4c
commit 5d535e9203

View File

@@ -119,7 +119,7 @@ Action *parseActionLine(const std::string &line, F error)
if (!arg.empty())
{
std::vector<int> queue(arg.begin(), arg.end());
// if char is signed, cancel 1s from char -> int conversion
// if char is signed, erase 1s from char -> int conversion
for (auto it = arg.begin(); it != arg.end(); ++it)
*it &= 0xff;
result = new PushCharacters(&Global::wFooter, std::move(queue));