fixed grammar in error in CompilerUtils.cpp line 399, 'less variables.' should be 'fewer variables.'

This commit is contained in:
njwest 2018-05-06 18:52:12 -04:00
parent 8d666e180d
commit 51b4dc3752

View File

@ -396,7 +396,7 @@ void CompilerUtils::encodeToMemory(
// leave end_of_mem as dyn head pointer
m_context << Instruction::DUP1 << u256(32) << Instruction::ADD;
dynPointers++;
solAssert((argSize + dynPointers) < 16, "Stack too deep, try using less variables.");
solAssert((argSize + dynPointers) < 16, "Stack too deep, try using fewer variables.");
}
else
{