From b2c812c79449a8cf7f3660370573a25cec17dd44 Mon Sep 17 00:00:00 2001 From: dm4 Date: Thu, 18 Apr 2019 19:07:06 +0800 Subject: [PATCH] [libyul] fix typo --- libyul/Dialect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libyul/Dialect.h b/libyul/Dialect.h index e06a68263..16f820460 100644 --- a/libyul/Dialect.h +++ b/libyul/Dialect.h @@ -49,7 +49,7 @@ struct BuiltinFunction /// This means the function cannot depend on storage or memory, cannot have any side-effects, /// but it can depend on state that is constant across an EVM-call. bool movable = false; - /// If true, can only accept literals as arguments and they cannot be moved to voriables. + /// If true, can only accept literals as arguments and they cannot be moved to variables. bool literalArguments = false; };