diff --git a/libsolidity/codegen/YulUtilFunctions.h b/libsolidity/codegen/YulUtilFunctions.h index 7badf6db2..aff9c2406 100644 --- a/libsolidity/codegen/YulUtilFunctions.h +++ b/libsolidity/codegen/YulUtilFunctions.h @@ -232,8 +232,8 @@ public: std::string storageArrayPopFunction(ArrayType const& _type); /// @returns the name of a function that pushes an element to a storage array -/// @param _fromType represents the type of the element being pushed. -/// If _fromType is ReferenceType the function will perform deep copy. + /// @param _fromType represents the type of the element being pushed. + /// If _fromType is ReferenceType the function will perform deep copy. /// signature: (array, value) std::string storageArrayPushFunction(ArrayType const& _type, Type const* _fromType = nullptr); @@ -530,7 +530,7 @@ public: std::string externalFunctionPointersEqualFunction(); private: -/// @returns the name of a function that copies a struct from calldata or memory to storage + /// @returns the name of a function that copies a struct from calldata or memory to storage /// signature: (slot, value) -> std::string copyStructToStorageFunction(StructType const& _from, StructType const& _to);