Skip to content

Commit c380366

Browse files
committed
Remove extra indentation in docspec
1 parent 1378b6f commit c380366

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

include/evmc/evmc.h

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -412,20 +412,20 @@ struct evmc_result
412412
/**
413413
* The reference to output data.
414414
*
415-
* The output contains data coming from RETURN opcode (iff evmc_result::code
416-
* field is ::EVMC_SUCCESS) or from REVERT opcode.
415+
* The output contains data coming from RETURN opcode (iff evmc_result::code
416+
* field is ::EVMC_SUCCESS) or from REVERT opcode.
417417
*
418-
* The memory containing the output data is owned by EVM and has to be
419-
* freed with evmc_result::release().
418+
* The memory containing the output data is owned by EVM and has to be
419+
* freed with evmc_result::release().
420420
*
421-
* This MAY be NULL.
421+
* This MAY be NULL.
422422
*/
423423
const uint8_t* output_data;
424424

425425
/**
426426
* The size of the output data.
427427
*
428-
* If output_data is NULL this MUST be 0.
428+
* If output_data is NULL this MUST be 0.
429429
*/
430430
size_t output_size;
431431

@@ -463,13 +463,13 @@ struct evmc_result
463463
/**
464464
* Reserved data that MAY be used by a evmc_result object creator.
465465
*
466-
* This reserved 4 bytes together with 20 bytes from create_address form
467-
* 24 bytes of memory called "optional data" within evmc_result struct
468-
* to be optionally used by the evmc_result object creator.
466+
* This reserved 4 bytes together with 20 bytes from create_address form
467+
* 24 bytes of memory called "optional data" within evmc_result struct
468+
* to be optionally used by the evmc_result object creator.
469469
*
470-
* @see evmc_result_optional_data, evmc_get_optional_data().
470+
* @see evmc_result_optional_data, evmc_get_optional_data().
471471
*
472-
* Also extends the size of the evmc_result to 64 bytes (full cache line).
472+
* Also extends the size of the evmc_result to 64 bytes (full cache line).
473473
*/
474474
uint8_t padding[4];
475475
};
@@ -1111,7 +1111,7 @@ struct evmc_vm
11111111
/**
11121112
* Optional pointer to function modifying VM's options.
11131113
*
1114-
* If the VM does not support this feature the pointer can be NULL.
1114+
* If the VM does not support this feature the pointer can be NULL.
11151115
*/
11161116
evmc_set_option_fn set_option;
11171117
};

0 commit comments

Comments
 (0)