aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/AssemblyStack.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-07-11 17:52:22 +0800
committerGitHub <noreply@github.com>2018-07-11 17:52:22 +0800
commit07910c80cb42a717212cf6b0a4c405eff20e6051 (patch)
tree7ab4a06da70cde7c253a1a0c82ccc085bf76efd5 /libsolidity/interface/AssemblyStack.cpp
parentd84976dc871a1fdfab233650b989af69e325bf2b (diff)
parent140dbfdbd8f4319d1d02339feea0a8636a3738e5 (diff)
downloaddexon-solidity-07910c80cb42a717212cf6b0a4c405eff20e6051.tar.gz
dexon-solidity-07910c80cb42a717212cf6b0a4c405eff20e6051.tar.zst
dexon-solidity-07910c80cb42a717212cf6b0a4c405eff20e6051.zip
Merge pull request #4462 from cryptomental/feature/add-codespell
Feature/add codespell
Diffstat (limited to 'libsolidity/interface/AssemblyStack.cpp')
-rw-r--r--libsolidity/interface/AssemblyStack.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/interface/AssemblyStack.cpp b/libsolidity/interface/AssemblyStack.cpp
index a4b0265e..46fa1d6b 100644
--- a/libsolidity/interface/AssemblyStack.cpp
+++ b/libsolidity/interface/AssemblyStack.cpp
@@ -119,7 +119,7 @@ MachineAssemblyObject AssemblyStack::assemble(Machine _machine) const
julia::EVMAssembly assembly(true);
julia::CodeTransform(assembly, *m_analysisInfo, m_language == Language::Yul, true)(*m_parserResult);
object.bytecode = make_shared<eth::LinkerObject>(assembly.finalize());
- /// TOOD: fill out text representation
+ /// TODO: fill out text representation
return object;
}
case Machine::eWasm: