Skip to content

Commit d76e032

Browse files
committed
Fix Question 147 typo.
1 parent 7db9cca commit d76e032

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4852,7 +4852,7 @@ class Calc {
48524852
}
48534853

48544854
increase() {
4855-
this.count ++
4855+
this.count++
48564856
}
48574857
}
48584858

id-ID/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4788,7 +4788,7 @@ class Calc {
47884788
}
47894789
47904790
increase() {
4791-
this.count ++
4791+
this.count++
47924792
}
47934793
}
47944794

it-IT/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4823,7 +4823,7 @@ class Calc {
48234823
}
48244824
48254825
increase() {
4826-
this.count ++
4826+
this.count++
48274827
}
48284828
}
48294829

ko-KR/README-ko_KR.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4804,7 +4804,7 @@ class Calc {
48044804
}
48054805

48064806
increase() {
4807-
this.count ++
4807+
this.count++
48084808
}
48094809
}
48104810

ro-RO/README.ro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4849,7 +4849,7 @@ class Calc {
48494849
}
48504850
48514851
increase() {
4852-
this.count ++
4852+
this.count++
48534853
}
48544854
}
48554855
@@ -5145,4 +5145,4 @@ Condiția din instrucțiunea `if` verifică dacă valoarea lui `!typeof randomVa
51455145
`!typeof randomValue === "string"` întotdeauna returnează `false`, deoarece de fapt verificăm `false === "string"`. Deoarece condiția returnează `false`, blocul de cod al instrucțiunii `else` se execută, iar `Yay it's a string!` este înregistrat.
51465146

51475147
</p>
5148-
</details>
5148+
</details>

ru-RU/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4847,7 +4847,7 @@ class Calc {
48474847
}
48484848
48494849
increase() {
4850-
this.count ++
4850+
this.count++
48514851
}
48524852
}
48534853

sq-KS/README_sq_KS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4846,7 +4846,7 @@ class Calc {
48464846
}
48474847

48484848
increase() {
4849-
this.count ++
4849+
this.count++
48504850
}
48514851
}
48524852

vi-VI/README-vi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4785,7 +4785,7 @@ class Calc {
47854785
}
47864786

47874787
increase() {
4788-
this.count ++
4788+
this.count++
47894789
}
47904790
}
47914791

zh-CN/README-zh_CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4785,7 +4785,7 @@ class Calc {
47854785
}
47864786

47874787
increase() {
4788-
this.count ++
4788+
this.count++
47894789
}
47904790
}
47914791

zh-TW/README_zh-TW.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4769,7 +4769,7 @@ class Calc {
47694769
}
47704770

47714771
increase() {
4772-
this.count ++
4772+
this.count++
47734773
}
47744774
}
47754775

@@ -5065,4 +5065,4 @@ if (!typeof randomValue === "string") {
50655065
`!typeof randomValue === "string"` 總是回傳 false,因為我們實際上是在執行 `false === "string"`。因為條件回傳的是 `false`,所以 `else` 語句中的代碼塊會被執行,因此輸出 `Yay it's a string!`。
50665066

50675067
</p>
5068-
</details>
5068+
</details>

0 commit comments

Comments
 (0)