commit | 74515d09b67079a17f3bb209c7872092103ec615 | [log] [tgz] |
---|---|---|
author | Michal Vasko <mvasko@cesnet.cz> | Fri Jun 11 11:13:11 2021 +0200 |
committer | Michal Vasko <mvasko@cesnet.cz> | Fri Jun 11 11:13:11 2021 +0200 |
tree | da53d431bb5f7e702820475ce82ce22b90871971 | |
parent | 5df1de78da1b7bf0c659d36a9277cc21997e95b3 [diff] |
data tree DOC binary value members clarification
diff --git a/src/tree_data.h b/src/tree_data.h index fc60fd4..945a31b 100644 --- a/src/tree_data.h +++ b/src/tree_data.h
@@ -610,8 +610,8 @@ * @brief Special lyd_value structure for built-in binary values. */ struct lyd_value_binary { - void *data; /**< binary value itself */ - size_t size; /**< size of the @p data value in bytes */ + void *data; /**< pointer to the binary value */ + size_t size; /**< size of @p data value in bytes */ }; /**