Skip to content
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

[zh-TW]: Fix the translation of constructor #25165

Merged
merged 1 commit into from
Dec 19, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Math.abs(x)

## 描述

由於 `abs()` 是 `Math` 的靜態方法,你必須使用 `Math.abs()`,而不是在你所建立的 `Math` 物件上呼叫此方法(`Math` 並不是建構函式)。
由於 `abs()` 是 `Math` 的靜態方法,你必須使用 `Math.abs()`,而不是在你所建立的 `Math` 物件上呼叫此方法(`Math` 並不是建構子)。

## 範例

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Math.acos(x)

## 描述

由於 `acos()` 是 `Math` 的靜態方法,你必須使用 `Math.acos()` 來呼叫它,而非呼叫你建立的 `Math` 物件的方法(`Math` 並非建構函式)。
由於 `acos()` 是 `Math` 的靜態方法,你必須使用 `Math.acos()` 來呼叫它,而非呼叫你建立的 `Math` 物件的方法(`Math` 並非建構子)。

## 範例

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ l10n:

## 描述

由於 `E` 是 `Math` 的靜態屬性,因此你必須使用 `Math.E`,而不是從你所建立的 `Math` 物件中存取該屬性(`Math` 並非建構函式)。
由於 `E` 是 `Math` 的靜態屬性,因此你必須使用 `Math.E`,而不是從你所建立的 `Math` 物件中存取該屬性(`Math` 並非建構子)。

## 範例

Expand Down
Loading