diff --git a/src/tkc/str.h b/src/tkc/str.h index 324b48225..1bd08e9a6 100644 --- a/src/tkc/str.h +++ b/src/tkc/str.h @@ -592,7 +592,7 @@ uint32_t str_count(str_t* str, const char* substr); * @method str_format * 通过格式设置字符串。 * @param {str_t*} str str对象。 - * @param {uint32_t} size format生成的字符串的最大长度(用于预习分配内存)。 + * @param {uint32_t} size format生成的字符串的最大长度(用于预先分配内存)。 * @param {const char*} format 格式。 * * @return {ret_t} 返回RET_OK表示成功,否则表示失败。 @@ -603,7 +603,7 @@ ret_t str_format(str_t* str, uint32_t size, const char* format, ...); * @method str_append_format * 通过格式追加字符串。 * @param {str_t*} str str对象。 - * @param {uint32_t} size format生成的字符串的最大长度(用于预习分配内存)。 + * @param {uint32_t} size format生成的字符串的最大长度(用于预先分配内存)。 * @param {const char*} format 格式。 * * @return {ret_t} 返回RET_OK表示成功,否则表示失败。