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 */
 };
 
 /**