Skip to content

Commit 06f9774

Browse files
committed
[Kanban 43] use the correct word "turn"
1 parent 52bdaae commit 06f9774

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Source/VisualPairCoding/VisualPairCoding.BL/PairCodingSession.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ public class PairCodingSession
44
{
55
public string[] Participants { get; }
66

7-
public int MinutesPerRound { get; }
7+
public int MinutesPerTurn { get; }
88

9-
public PairCodingSession(string[] participants, int minutesPerRound)
9+
public PairCodingSession(string[] participants, int minutesPerTurn)
1010
{
1111
Participants = participants;
12-
MinutesPerRound = minutesPerRound;
12+
MinutesPerTurn = minutesPerTurn;
1313
}
1414

1515
public string? Validate()

0 commit comments

Comments
 (0)