Merge pull request #6552 from dm4/fix-typo

[libyul] fix typo
This commit is contained in:
chriseth
2019-04-18 13:20:12 +02:00
committed by GitHub
+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;
};