eina_strbuf_manage_new: update documentation

Reviewers: cedric

Reviewed By: cedric

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Maniphest Tasks: T8757

Differential Revision: https://phab.enlightenment.org/D11991
This commit is contained in:
Ali Alzyod 2020-06-22 17:16:02 +09:00 committed by WooHyun Jung
parent c43630c22a
commit 1a2811bae4
1 changed files with 2 additions and 1 deletions

View File

@ -89,7 +89,8 @@ EAPI Eina_Strbuf *eina_strbuf_new(void) EINA_MALLOC EINA_WARN_UNUSED_RESULT;
*
* This function creates a new string buffer. The passed string is used
* directly as the buffer, it's effectively the inverse of
* eina_strbuf_string_steal(). The passed string must be malloc'd.
* eina_strbuf_string_steal().
* The passed string must be malloc'd, and its ownership will transfer to Eina_Strbuf(do not free it with free()).
* To free the resources, use eina_strbuf_free().
*
* @see eina_strbuf_free()