Skip to content

Commit

Permalink
Correct operator translation (#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
ohto-ai committed Sep 27, 2023
1 parent 68b7bf3 commit 34434fd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/github-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,17 +260,17 @@ env:
#### 操作符

- `( )` _(逻辑分组)_
- `[ ]` _(指数)_
- `.` _(属性取消引用)_
- `!` _(不是)_
- `<` _(少于)_
- `[ ]` _(索引)_
- `.` _(属性解引用)_
- `!` _()_
- `<` _(小于)_
- `<=` _(小于或等于)_
- `>` _(比...更棒)_
- `>` _(大于)_
- `>=` _(大于或等于)_
- `==` _(平等的)_
- `!=` _(不相等)_
- `==` _(相等)_
- `!=` _(不等)_
- `&&` _(和)_
- `||` _(或者)_
- `||` _()_
<!--rehype:className=cols-2 style-none-->

### Github 上下文
Expand Down

0 comments on commit 34434fd

Please sign in to comment.