Merge pull request #9754 from ethereum/fix-typo-block

Fix typo block
This commit is contained in:
chriseth 2020-09-07 21:36:43 +02:00 committed by GitHub
commit 364626b290
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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.
*/