From 04bf3b1434feb6928ca10ec39cb76f640e38b8d3 Mon Sep 17 00:00:00 2001 From: lixianjing Date: Tue, 19 Dec 2023 18:01:00 +0800 Subject: [PATCH] fix api comments --- src/tkc/typed_array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tkc/typed_array.h b/src/tkc/typed_array.h index 1cf45ec375..210d608eb8 100644 --- a/src/tkc/typed_array.h +++ b/src/tkc/typed_array.h @@ -39,7 +39,7 @@ BEGIN_C_DECLS * typed_array_push(a, value_set_int(&v, 123)); * typed_array_push(a, value_set_int(&v, 234)); * ... - * typed_array_destroy(typed_array); + * typed_array_destroy(a); * ``` * */