From d1d219379f6d7d8a539ade76f784ddd71917027a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Thu, 9 May 2019 22:05:27 +0200 Subject: [PATCH] docs: Tweak documentation of evmc_execute_fn --- include/evmc/evmc.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/include/evmc/evmc.h b/include/evmc/evmc.h index 15c75ab..56953c6 100644 --- a/include/evmc/evmc.h +++ b/include/evmc/evmc.h @@ -791,18 +791,18 @@ enum evmc_revision /** - * Executes the given EVM bytecode using the input in the message + * Executes the given code using the input from the message. * - * This function MAY be invoked multiple times for a single EVM instance. + * This function MAY be invoked multiple times for a single VM instance. * - * @param instance The EVM instance. + * @param instance The VM instance. * @param context The pointer to the Client execution context to be passed - * to the callback functions. @see ::evmc_context. + * to the callback functions. See ::evmc_context. * @param rev Requested EVM specification revision. - * @param msg Call parameters. @see ::evmc_message. - * @param code Reference to the bytecode to be executed. - * @param code_size The length of the bytecode. - * @return All execution results. + * @param msg Call parameters. See ::evmc_message. + * @param code Reference to the code to be executed. + * @param code_size The length of the code. + * @return The execution result. */ typedef struct evmc_result (*evmc_execute_fn)(struct evmc_instance* instance, struct evmc_context* context,