From 3b4e0b2e56e4e11860bb9eede3e438798050c831 Mon Sep 17 00:00:00 2001 From: Koji Hasegawa Date: Sat, 29 Jul 2023 15:02:30 +0900 Subject: [PATCH] =?UTF-8?q?Fix=20coments,=20s/=E6=93=AC=E4=BC=BC=E4=B9=B1?= =?UTF-8?q?=E6=95=B0=E7=99=BA=E7=94=9F=E5=99=A8/=E6=93=AC=E4=BC=BC?= =?UTF-8?q?=E4=B9=B1=E6=95=B0=E7=94=9F=E6=88=90=E5=99=A8/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/TestDoubleExample/Scripts/Runtime/Janken/IRandom.cs | 2 +- Assets/TestDoubleExample/Scripts/Runtime/Janken/Janken.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Assets/TestDoubleExample/Scripts/Runtime/Janken/IRandom.cs b/Assets/TestDoubleExample/Scripts/Runtime/Janken/IRandom.cs index 89a231f..eeff491 100644 --- a/Assets/TestDoubleExample/Scripts/Runtime/Janken/IRandom.cs +++ b/Assets/TestDoubleExample/Scripts/Runtime/Janken/IRandom.cs @@ -4,7 +4,7 @@ namespace TestDoubleExample.Janken { /// - /// 擬似乱数発生器インタフェース + /// 擬似乱数生成器インタフェース /// public interface IRandom { diff --git a/Assets/TestDoubleExample/Scripts/Runtime/Janken/Janken.cs b/Assets/TestDoubleExample/Scripts/Runtime/Janken/Janken.cs index 111f286..bc5f2dc 100644 --- a/Assets/TestDoubleExample/Scripts/Runtime/Janken/Janken.cs +++ b/Assets/TestDoubleExample/Scripts/Runtime/Janken/Janken.cs @@ -11,9 +11,9 @@ public class Janken private readonly IRandom _random; /// - /// 擬似乱数発生器をコンストラクタインジェクションで受け取ります + /// 擬似乱数生成器をコンストラクタインジェクションで受け取ります /// - /// 擬似乱数発生器 + /// 擬似乱数生成器 public Janken(IRandom random) { _random = random;