From 4c1dbac14e2d29f7e8c4d785c3279de5b5f709ab Mon Sep 17 00:00:00 2001 From: KisaragiEffective <48310258+KisaragiEffective@users.noreply.github.com> Date: Mon, 21 Dec 2020 22:56:28 +0900 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E9=A3=BE=E8=A9=9E=E2=86=92=E4=BF=AE?= =?UTF-8?q?=E9=A3=BE=E5=AD=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit as en:modifier → ja:修飾子 --- _ja/tour/classes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_ja/tour/classes.md b/_ja/tour/classes.md index 7fdaea722d..e594b4ea37 100644 --- a/_ja/tour/classes.md +++ b/_ja/tour/classes.md @@ -82,7 +82,7 @@ println(point2.y) // 2 が出力されます。 ## プライベートメンバーとゲッター/セッター構文 メンバーはデフォルトではパブリックになります。 -クラスの外から隠したい場合は`private`アクセス修飾詞を使いましょう。 +クラスの外から隠したい場合は`private`アクセス修飾子を使いましょう。 ```scala mdoc:reset class Point {