Skip to content

Commit

Permalink
fix api comments
Browse files Browse the repository at this point in the history
  • Loading branch information
xianjimli committed Dec 19, 2023
1 parent 299f361 commit 03245c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions docs/changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# 最新动态

2023/12/19
* 修复API注释(感谢俊杰提供补丁)

2023/12/18
* 修复lldb获取变量的时候返回为空值的问(感谢智明提供补丁)
* 修复打包release资源路径不正常的问题(感谢智明提供补丁)
Expand Down
2 changes: 1 addition & 1 deletion src/tkc/typed_array.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ BEGIN_C_DECLS
*
* ```c
* value_t v;
* typed_array_t* typed_array = typed_array_create(VALUE_TYPE_INT, 10);
* typed_array_t* a = typed_array_create(VALUE_TYPE_INT, 10);
* typed_array_push(a, value_set_int(&v, 123));
* typed_array_push(a, value_set_int(&v, 234));
* ...
Expand Down

0 comments on commit 03245c7

Please sign in to comment.