Skip to content

Commit f307042

Browse files
authored
Merge pull request #2044 from jeremyrsmith/operators-mention-dollar-and-underscore
Mention symbols `$` and `_` in operators.md
2 parents 882e73a + 07cd620 commit f307042

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

_ba/tour/operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Kada izraz koristi više operatora, operatori se primjenjuju bazirano na priorit
7171
&
7272
^
7373
|
74-
(sva slova)
74+
(sva slova, $, _)
7575
```
7676
Ovo se odnosi na metode koje definišete. Npr, sljedeći izraz:
7777
```

_ja/tour/operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def xor(x: MyBool, y: MyBool) = (x or y) and not(x and y)
7373
&
7474
^
7575
|
76-
(全ての文字)
76+
(全ての文字, $, _)
7777
```
7878
これはあなたが定義した関数にも適用できます。
7979
たとえば、以下の式

_ru/tour/operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def xor(x: MyBool, y: MyBool) = (x or y) and not(x and y)
6868
&
6969
^
7070
|
71-
(буквы)
71+
(буквы, $, _)
7272
```
7373
Такой приоритет распространяется на любые функции, которые вы задаете. Например, следующее выражение:
7474
```

_tour/operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ When an expression uses multiple operators, the operators are evaluated based on
6565
&
6666
^
6767
|
68-
(all letters)
68+
(all letters, $, _)
6969
```
7070
This applies to functions you define. For example, the following expression:
7171
```

_zh-cn/tour/operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def xor(x: MyBool, y: MyBool) = (x or y) and not(x and y)
6565
&
6666
^
6767
|
68-
(all letters)
68+
(all letters, $, _)
6969
```
7070
这也适用于你自定义的方法。 例如,以下表达式:
7171
```

0 commit comments

Comments
 (0)