Skip to content

Commit

Permalink
docs: use kebab-case (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
lijunchen authored Sep 19, 2024
1 parent b04a40d commit 7746747
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/manual-zh/src/package/alerts.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

```json
{
"alert_list": "-alert_1-alert_2"
"alert-list": "-alert_1-alert_2"
}
```
4 changes: 2 additions & 2 deletions docs/manual-zh/src/package/link/wasm.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
}
```

- `heap_start_address` 选项用于指定 moonc 编译到 wasm 后端时能够使用的线性内存的起始地址。
- `heap-start-address` 选项用于指定 moonc 编译到 wasm 后端时能够使用的线性内存的起始地址。

例如,如下配置将线性内存的起始地址设置为 1024。

```json
{
"link": {
"wasm": {
"heap_start_address": 1024
"heap-start-address": 1024
},
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/manual-zh/src/package/warnings.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

```json
{
"warn_list": "-2",
"warn-list": "-2",
}
```

Expand Down

0 comments on commit 7746747

Please sign in to comment.