Skip to content

Commit

Permalink
Fix coments, s/擬似乱数発生器/擬似乱数生成器/
Browse files Browse the repository at this point in the history
  • Loading branch information
nowsprinting committed Jul 29, 2023
1 parent 1c22dea commit 3b4e0b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Assets/TestDoubleExample/Scripts/Runtime/Janken/IRandom.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace TestDoubleExample.Janken
{
/// <summary>
/// 擬似乱数発生器インタフェース
/// 擬似乱数生成器インタフェース
/// </summary>
public interface IRandom
{
Expand Down
4 changes: 2 additions & 2 deletions Assets/TestDoubleExample/Scripts/Runtime/Janken/Janken.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ public class Janken
private readonly IRandom _random;

/// <summary>
/// 擬似乱数発生器をコンストラクタインジェクションで受け取ります
/// 擬似乱数生成器をコンストラクタインジェクションで受け取ります
/// </summary>
/// <param name="random">擬似乱数発生器</param>
/// <param name="random">擬似乱数生成器</param>
public Janken(IRandom random)
{
_random = random;
Expand Down

0 comments on commit 3b4e0b2

Please sign in to comment.