Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
orzogc authored and jinzhongjia committed Dec 11, 2023
1 parent bfc0283 commit b26a42c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion learn/advanced/interact-with-c.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ const std = @import("std");
fn add(count: c_int, ...) callconv(.C) c_int {
// 对应 C 的宏 va_start
var ap = @cVaStart();
// 对应 C 的宏 va_start
// 对应 C 的宏 va_end
defer @cVaEnd(&ap);
var i: usize = 0;
var sum: c_int = 0;
Expand Down
2 changes: 1 addition & 1 deletion learn/basic/advanced_type/array.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ pub fn main() void {
| `\n` | 换行 |
| `\r` | 回车 |
| `\t` | 制表符 Tab |
| `\\` | 反斜杠 \| |
| `\\` | 反斜杠 \ |
| `\'` | 单引号 |
| `\"` | 双引号 |
| `\xNN` | 十六进制八位字节值,2 位 |
Expand Down
4 changes: 2 additions & 2 deletions learn/basic/basic_type/function.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ fn addFortyTwo(x: anytype) @TypeOf(x) {

### `noreturn`

`noteturn` 是一个特殊的类型,它代表以下内容:
`noreturn` 是一个特殊的类型,它代表以下内容:

- `break`
- `continue`
Expand Down Expand Up @@ -122,7 +122,7 @@ extern "c" fn atan2(a: f64, b: f64) f64;

:::

### `@setCode`
### `@setCold`

`@setCold(comptime is_cold: bool) void`

Expand Down
6 changes: 3 additions & 3 deletions learn/environment/editor.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ outline: deep

![vscode-zig](/picture/basic/vscode-zig.png){data-zoomable}

## Cloin
## CLion

> Clion 是一款专为开发 C 及 C++ 所设计的跨平台 IDE。它是以 IntelliJ 为基础设计的,包含了许多智能功能来提高开发人员的生产力。CLion 帮助开发人员使用智能编辑器来提高代码质量、自动代码重构并且深度整合 CMake 编译系统,从而提高开发人员的工作效率。
> CLion 是一款专为开发 C 及 C++ 所设计的跨平台 IDE。它是以 IntelliJ 为基础设计的,包含了许多智能功能来提高开发人员的生产力。CLion 帮助开发人员使用智能编辑器来提高代码质量、自动代码重构并且深度整合 CMake 编译系统,从而提高开发人员的工作效率。
原本 Clion 仅仅是 C/C++ 的开发IDE,但在安装插件后可以作为 zig 的 IDE 使用。
原本 CLion 仅仅是 C/C++ 的开发IDE,但在安装插件后可以作为 zig 的 IDE 使用。

目前插件市场活跃的两个 zig 插件(均为第三方作者维护)分别是 [ZigBrains](https://plugins.jetbrains.com/plugin/22456-zigbrains)[Zig Support](https://plugins.jetbrains.com/plugin/18062-zig-support),均支持 zig 的 `0.11.0` 版本。

Expand Down

0 comments on commit b26a42c

Please sign in to comment.