Fix typo block

This commit is contained in:
Harikrishnan Mulackal 2020-09-07 17:24:03 +02:00
parent 2b29f4e56d
commit d166c2540a
2 changed files with 2 additions and 2 deletions

View File

@ -193,7 +193,7 @@ private:
void visitStatements(std::vector<Statement> const& _statements);
/// Pops all variables declared in the block and checks that the stack height is equal
/// to @a _blackStartStackHeight.
/// to @a _blockStartStackHeight.
void finalizeBlock(Block const& _block, int _blockStartStackHeight);
void generateMultiAssignment(std::vector<Identifier> const& _variableNames);

View File

@ -16,7 +16,7 @@
*/
// SPDX-License-Identifier: GPL-3.0
/**
* Optimiser component that changes the code of a black so that all non-function definition
* Optimiser component that changes the code of a block so that all non-function definition
* instructions are moved to a block of their own followed by all function definitions.
*/