From c65a96d1899db67b4b0f4c8b32e2acae15cd8480 Mon Sep 17 00:00:00 2001 From: Mathias Baumann Date: Thu, 21 Feb 2019 12:54:39 +0100 Subject: [PATCH] Small documentation fixes in the code --- libsolidity/ast/AST.h | 2 +- libsolidity/codegen/CompilerUtils.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/libsolidity/ast/AST.h b/libsolidity/ast/AST.h index ff4b8815e..60cbc7dce 100644 --- a/libsolidity/ast/AST.h +++ b/libsolidity/ast/AST.h @@ -1576,7 +1576,7 @@ private: }; /** - * Index access to an array. Example: a[2] + * Index access to an array or mapping. Example: a[2] */ class IndexAccess: public Expression { diff --git a/libsolidity/codegen/CompilerUtils.h b/libsolidity/codegen/CompilerUtils.h index 97b53bcf2..610a43bcd 100644 --- a/libsolidity/codegen/CompilerUtils.h +++ b/libsolidity/codegen/CompilerUtils.h @@ -84,7 +84,6 @@ public: ); /// Stores a 256 bit integer from stack in memory. /// @param _offset offset in memory - /// @param _type type of the data on the stack void storeInMemory(unsigned _offset); /// Dynamic version of @see storeInMemory, expects the memory offset below the value on the stack /// and also updates that. For reference types, only copies the data pointer. Fails for