woohyun pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=1a2811bae4087a1d6078c93c45043c597f256114
commit 1a2811bae4087a1d6078c93c45043c597f256114 Author: Ali Alzyod <ali198...@gmail.com> Date: Mon Jun 22 17:16:02 2020 +0900 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 --- src/lib/eina/eina_strbuf.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/eina/eina_strbuf.h b/src/lib/eina/eina_strbuf.h index 73d166433d..da94435c2d 100644 --- a/src/lib/eina/eina_strbuf.h +++ b/src/lib/eina/eina_strbuf.h @@ -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() --