From b43a37baeccf995eb8ac7209cc3df33996955aa9 Mon Sep 17 00:00:00 2001 From: chriseth Date: Fri, 6 Mar 2015 15:39:21 +0100 Subject: [PATCH] Update Types.h Typo --- libsolidity/Types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsolidity/Types.h b/libsolidity/Types.h index 0915e0da6..6cef8d64a 100644 --- a/libsolidity/Types.h +++ b/libsolidity/Types.h @@ -122,7 +122,7 @@ public: /// is not a simple big-endian encoding or the type cannot be stored in calldata. /// If @a _padded then it is assumed that each element is padded to a multiple of 32 bytes. virtual unsigned getCalldataEncodedSize(bool _padded) const { (void)_padded; return 0; } - /// Convenience eversion of @see getCalldataEncodedSize(bool) + /// Convenience version of @see getCalldataEncodedSize(bool) unsigned getCalldataEncodedSize() const { return getCalldataEncodedSize(true); } /// @returns true if the type is dynamically encoded in calldata virtual bool isDynamicallySized() const { return false; }