Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
xianjimli committed Jan 2, 2024
1 parent 1ec4d86 commit 1c09c69
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* 增加函数 tokenizer\_next\_str\_until
* widget 增加 widget->vt 的空指针检查。
* 修复tk\_is\_pointer\_pressed接口在处理鼠标抬起事件过程中返回值错误的问题(感谢雨欣提供补丁)
* 修复文档拼写错误(感谢雨欣提供补丁)

2024/01/01
* 文件浏览支持变量。
Expand Down
2 changes: 1 addition & 1 deletion docs/fscript.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ print("hello fscript")
* 字符串类型 (string)。UTF-8 字符串,用英文双引号扩起来。
* 布尔类型 (bool)。标准取值为:true 和 false,非 0 的数值视为 true。
* 可以通过扩展实现混合数据类型的数组、固定类型的数组和 map。
* 可以通过类型转换函数得到各种基本类型。如 int8/int16/int32/int64/uint8/uint16/uint32/uintg64/float/double。
* 可以通过类型转换函数得到各种基本类型。如 int8/int16/int32/int64/uint8/uint16/uint32/uint64/float/double。

### 3.2 注释

Expand Down
2 changes: 1 addition & 1 deletion docs/fscript_typed_array.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ type 参数为字符串,可选取值如下:
#### 示例

```js
var a = typed_array_create("i8", s10);
var a = typed_array_create("i8", 10);
```

### 2.typed\_array\_push
Expand Down

0 comments on commit 1c09c69

Please sign in to comment.