Correct operator translation (#443)

This commit is contained in:
Choo 2023-09-27 18:58:40 +08:00 committed by GitHub
parent 68b7bf36bb
commit 34434fd402
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -260,17 +260,17 @@ env:
#### 操作符 #### 操作符
- `( )` _(逻辑分组)_ - `( )` _(逻辑分组)_
- `[ ]` _(指数)_ - `[ ]` _(索引)_
- `.` _(属性取消引用)_ - `.` _(属性引用)_
- `!` _(不是)_ - `!` _()_
- `<` _(于)_ - `<` _(于)_
- `<=` _(小于或等于)_ - `<=` _(小于或等于)_
- `>` _(比...更棒)_ - `>` _(大于)_
- `>=` _(大于或等于)_ - `>=` _(大于或等于)_
- `==` _(平等的)_ - `==` _(相等)_
- `!=` _(不等)_ - `!=` _(不等)_
- `&&` _(和)_ - `&&` _(和)_
- `||` _(或)_ - `||` _(或)_
<!--rehype:className=cols-2 style-none--> <!--rehype:className=cols-2 style-none-->
### Github 上下文 ### Github 上下文