[libyul] fix typo

This commit is contained in:
dm4 2019-04-18 19:07:06 +08:00
parent fce19bde58
commit b2c812c794
No known key found for this signature in database
GPG Key ID: 284633CF9C3DCF17

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;
};