From e735c01b4a9fbc394d56cd5900ee42ebad5a3999 Mon Sep 17 00:00:00 2001 From: chriseth Date: Tue, 10 Sep 2019 16:52:32 +0200 Subject: [PATCH] [DOC] Clarify log functions --- docs/contracts/events.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contracts/events.rst b/docs/contracts/events.rst index b1651e234..c780da8a9 100644 --- a/docs/contracts/events.rst +++ b/docs/contracts/events.rst @@ -132,7 +132,7 @@ Low-Level Interface to Logs It is also possible to access the low-level interface to the logging mechanism via the functions ``log0``, ``log1``, ``log2``, ``log3`` and ``log4``. -``logi`` takes ``i + 1`` parameter of type ``bytes32``, where the first +Each function ``logi`` takes ``i + 1`` parameter of type ``bytes32``, where the first argument will be used for the data part of the log and the others as topics. The event call above can be performed in the same way as