aboutsummaryrefslogtreecommitdiffstats
path: root/libjulia/backends/evm
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-06-19 05:26:31 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-06-26 06:52:27 +0800
commit8fa8b2d08ee09f58fe94a11b7101a9a6873c622e (patch)
treeda2890e7d87ad9cd11d03ae9c3cdd35ce148fc42 /libjulia/backends/evm
parent91db46b12867c48de8539b02fccd5fc06cf5d198 (diff)
downloaddexon-solidity-8fa8b2d08ee09f58fe94a11b7101a9a6873c622e.tar
dexon-solidity-8fa8b2d08ee09f58fe94a11b7101a9a6873c622e.tar.gz
dexon-solidity-8fa8b2d08ee09f58fe94a11b7101a9a6873c622e.tar.bz2
dexon-solidity-8fa8b2d08ee09f58fe94a11b7101a9a6873c622e.tar.lz
dexon-solidity-8fa8b2d08ee09f58fe94a11b7101a9a6873c622e.tar.xz
dexon-solidity-8fa8b2d08ee09f58fe94a11b7101a9a6873c622e.tar.zst
dexon-solidity-8fa8b2d08ee09f58fe94a11b7101a9a6873c622e.zip
Rename Julia to Yul in comments
Diffstat (limited to 'libjulia/backends/evm')
-rw-r--r--libjulia/backends/evm/AbstractAssembly.h2
-rw-r--r--libjulia/backends/evm/EVMCodeTransform.cpp2
-rw-r--r--libjulia/backends/evm/EVMCodeTransform.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/libjulia/backends/evm/AbstractAssembly.h b/libjulia/backends/evm/AbstractAssembly.h
index 8e90a912..46fa7796 100644
--- a/libjulia/backends/evm/AbstractAssembly.h
+++ b/libjulia/backends/evm/AbstractAssembly.h
@@ -42,7 +42,7 @@ namespace julia
{
///
-/// Assembly class that abstracts both the libevmasm assembly and the new julia evm assembly.
+/// Assembly class that abstracts both the libevmasm assembly and the new Yul assembly.
///
class AbstractAssembly
{
diff --git a/libjulia/backends/evm/EVMCodeTransform.cpp b/libjulia/backends/evm/EVMCodeTransform.cpp
index 2a97429b..b7614500 100644
--- a/libjulia/backends/evm/EVMCodeTransform.cpp
+++ b/libjulia/backends/evm/EVMCodeTransform.cpp
@@ -15,7 +15,7 @@
along with solidity. If not, see <http://www.gnu.org/licenses/>.
*/
/**
- * Common code generator for translating Julia / inline assembly to EVM and EVM1.5.
+ * Common code generator for translating Yul / inline assembly to EVM and EVM1.5.
*/
#include <libjulia/backends/evm/EVMCodeTransform.h>
diff --git a/libjulia/backends/evm/EVMCodeTransform.h b/libjulia/backends/evm/EVMCodeTransform.h
index f8eec0b7..96b97d9a 100644
--- a/libjulia/backends/evm/EVMCodeTransform.h
+++ b/libjulia/backends/evm/EVMCodeTransform.h
@@ -15,7 +15,7 @@
along with solidity. If not, see <http://www.gnu.org/licenses/>.
*/
/**
- * Common code generator for translating Julia / inline assembly to EVM and EVM1.5.
+ * Common code generator for translating Yul / inline assembly to EVM and EVM1.5.
*/
#include <libjulia/backends/evm/EVMAssembly.h>