[libyul] fix typo

This commit is contained in:
dm4
2019-04-18 19:07:06 +08:00
parent fce19bde58
commit b2c812c794
+1 -1
View File
@@ -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;
};