From 4c469c7b708cb3d8185b85c2dd1a7f6cdc88a40c Mon Sep 17 00:00:00 2001 From: Daniel Kirchner Date: Wed, 21 Dec 2022 16:14:07 +0100 Subject: [PATCH] Fix typo. --- libevmasm/Assembly.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libevmasm/Assembly.cpp b/libevmasm/Assembly.cpp index 148dce818..46fd40889 100644 --- a/libevmasm/Assembly.cpp +++ b/libevmasm/Assembly.cpp @@ -906,7 +906,7 @@ LinkerObject const& Assembly::assemble() const // TODO: remove this when transitioning to unified spec headers if (eof && bytesRequiredForDataAndSubsUpperBound > 0 && ret.bytecode.size() == dataStart) { - // We have commited to a data section, but not actually needed it, so create a fake one. + // We have committed to a data section, but not actually needed it, so create a fake one. ret.bytecode.push_back(0); }