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

fix: 「Math」のまとめの接続表現を修正 #1612

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 source/basic/math/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ console.log(Math.trunc(-1.3)); // => -1
## まとめ {#conclusion}

この章では、`Math`オブジェクトについて学びました。
紹介したメソッドは`Math`オブジェクトの一部にすぎないため、そのほかにもメソッドが用意されています。
紹介したメソッドは`Math`オブジェクトの一部にすぎず、そのほかにもメソッドが用意されています。
Copy link
Collaborator

@azu azu Feb 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

普通に読んでいて、〜でしかないため 相当な意味合いかなと思いました。
「に過ぎない(にすぎない)」の意味や使い方 わかりやすく解説 Weblio辞書

どちらでも通じるかなとは思いました。
紹介したのは一部分でしかない → そのため他にもメソッドがあります。

変更後は、そのほかの方が重要っぽくは見えました。

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

自分が引っかかっていたのは「ため」という語で、自分の感覚としてはこれが接続する前後の文は内容的に異なることが通常だと思います。たとえば「電車が遅れているため遅刻します」のような感じです。

一方、ここで修正した文の中の「ため」の前後を見てみると

  • 紹介したメソッドはMathオブジェクトの一部にすぎない
  • そのほかにもメソッドが用意されている

とほぼ同内容の言い換え表現となっており、通じるかどうかで言えば通じると思うのですが、少し違和感があり PR を作成しました。

変更後は、そのほかの方が重要っぽくは見えました。

この点については自分は感じていませんでしたが、「にすぎない」という語は「大したことがない」というニュアンスで使われることも確かにあると思うので、そうした感じが出てしまっているのかもしれませんね。

Suggested change
紹介したメソッドは`Math`オブジェクトの一部にすぎず、そのほかにもメソッドが用意されています。
紹介したメソッドは`Math`オブジェクトの一部であり、そのほかにもメソッドが用意されています。

のように「にすぎない」を使わないのが良いのかもしれません。


- `Math`は数学的な定数や関数を提供するビルトインオブジェクト
- `Math`はコンストラクタではないためインスタンス化できない
Expand Down