From 7de314bd0d81b17f326e9a3fc0d948a383b5b5ad Mon Sep 17 00:00:00 2001 From: Saw-mon & Natalie <3140080+Saw-mon-and-Natalie@users.noreply.github.com> Date: Tue, 16 May 2023 04:41:22 +0100 Subject: [PATCH] fixed typo --- libsolidity/ast/Types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsolidity/ast/Types.h b/libsolidity/ast/Types.h index 783b2b259..bca79f555 100644 --- a/libsolidity/ast/Types.h +++ b/libsolidity/ast/Types.h @@ -1634,7 +1634,7 @@ public: u256 storageSize() const override; bool hasSimpleZeroValueInMemory() const override { solAssert(false, ""); } std::string richIdentifier() const override; - std::string eip712TypeName() const override { solAssert(false, "EIP-712 is not supported for struct members of modfier type"); } + std::string eip712TypeName() const override { solAssert(false, "EIP-712 is not supported for struct members of modifier type"); } bool operator==(Type const& _other) const override; std::string toString(bool _withoutDataLocation) const override; protected: