Skip to content

Commit

Permalink
Fix Question 147 typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
singlexyz committed Mar 10, 2024
1 parent 7db9cca commit d76e032
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4852,7 +4852,7 @@ class Calc {
}

increase() {
this.count ++
this.count++
}
}

Expand Down
2 changes: 1 addition & 1 deletion id-ID/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4788,7 +4788,7 @@ class Calc {
}
increase() {
this.count ++
this.count++
}
}
Expand Down
2 changes: 1 addition & 1 deletion it-IT/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4823,7 +4823,7 @@ class Calc {
}
increase() {
this.count ++
this.count++
}
}
Expand Down
2 changes: 1 addition & 1 deletion ko-KR/README-ko_KR.md
Original file line number Diff line number Diff line change
Expand Up @@ -4804,7 +4804,7 @@ class Calc {
}

increase() {
this.count ++
this.count++
}
}

Expand Down
4 changes: 2 additions & 2 deletions ro-RO/README.ro.md
Original file line number Diff line number Diff line change
Expand Up @@ -4849,7 +4849,7 @@ class Calc {
}

increase() {
this.count ++
this.count++
}
}

Expand Down Expand Up @@ -5145,4 +5145,4 @@ Condiția din instrucțiunea `if` verifică dacă valoarea lui `!typeof randomVa
`!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.

</p>
</details>
</details>
2 changes: 1 addition & 1 deletion ru-RU/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4847,7 +4847,7 @@ class Calc {
}
increase() {
this.count ++
this.count++
}
}
Expand Down
2 changes: 1 addition & 1 deletion sq-KS/README_sq_KS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4846,7 +4846,7 @@ class Calc {
}

increase() {
this.count ++
this.count++
}
}

Expand Down
2 changes: 1 addition & 1 deletion vi-VI/README-vi.md
Original file line number Diff line number Diff line change
Expand Up @@ -4785,7 +4785,7 @@ class Calc {
}

increase() {
this.count ++
this.count++
}
}

Expand Down
2 changes: 1 addition & 1 deletion zh-CN/README-zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -4785,7 +4785,7 @@ class Calc {
}

increase() {
this.count ++
this.count++
}
}

Expand Down
4 changes: 2 additions & 2 deletions zh-TW/README_zh-TW.md
Original file line number Diff line number Diff line change
Expand Up @@ -4769,7 +4769,7 @@ class Calc {
}

increase() {
this.count ++
this.count++
}
}

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

</p>
</details>
</details>

0 comments on commit d76e032

Please sign in to comment.