We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ae976ce + a55ba45 commit 2952528Copy full SHA for 2952528
src/services/common/Codebreaker.GameAPIs.Analyzers/Extensions/PegExtensions.cs
@@ -30,8 +30,8 @@ public static string[] ToStringResults(this ColorResult result)
30
public static string[] ToStringResults(this ShapeAndColorResult result)
31
{
32
return Enumerable.Repeat(Colors.Black, result.Correct)
33
- .Concat(Enumerable.Repeat(Colors.Blue, result.ColorOrShape))
34
.Concat(Enumerable.Repeat(Colors.White, result.WrongPosition))
+ .Concat(Enumerable.Repeat(Colors.Blue, result.ColorOrShape))
35
.ToArray();
36
}
37
0 commit comments