Skip to content

Mention symbols $ and _ in operators.md #2044

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _ba/tour/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Kada izraz koristi više operatora, operatori se primjenjuju bazirano na priorit
&
^
|
(sva slova)
(sva slova, $, _)
```
Ovo se odnosi na metode koje definišete. Npr, sljedeći izraz:
```
Expand Down
2 changes: 1 addition & 1 deletion _ja/tour/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def xor(x: MyBool, y: MyBool) = (x or y) and not(x and y)
&
^
|
(全ての文字)
(全ての文字, $, _)
```
これはあなたが定義した関数にも適用できます。
たとえば、以下の式
Expand Down
2 changes: 1 addition & 1 deletion _ru/tour/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def xor(x: MyBool, y: MyBool) = (x or y) and not(x and y)
&
^
|
(буквы)
(буквы, $, _)
```
Такой приоритет распространяется на любые функции, которые вы задаете. Например, следующее выражение:
```
Expand Down
2 changes: 1 addition & 1 deletion _tour/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ When an expression uses multiple operators, the operators are evaluated based on
&
^
|
(all letters)
(all letters, $, _)
```
This applies to functions you define. For example, the following expression:
```
Expand Down
2 changes: 1 addition & 1 deletion _zh-cn/tour/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def xor(x: MyBool, y: MyBool) = (x or y) and not(x and y)
&
^
|
(all letters)
(all letters, $, _)
```
这也适用于你自定义的方法。 例如,以下表达式:
```
Expand Down