Skip to content

Commit 295b563

Browse files
committed
Fix typos
1 parent 44cdd88 commit 295b563

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cosette/Interactive/InteractiveConsole.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public void WriteLine(string message)
102102

103103
private void DisplayIntro()
104104
{
105-
Console.WriteLine($"Cosette v1.0 (Aqua) @ {Environment.OSVersion}");
105+
Console.WriteLine($"Cosette v1.0 (Aqua), 19.09.2020 @ {Environment.OSVersion}");
106106
Console.WriteLine("Homepage and source code: https://github.com/Tearth/Cosette");
107107
Console.WriteLine();
108108
Console.WriteLine("\"There are two types of sacrifices: correct ones, and mine.\" ~ Mikhail Tal");

Cosette/Uci/UciClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ private void OnSearchUpdate(object sender, SearchStatistics stats)
110110
var score = FormatScore(stats.Score);
111111
var principalVariation = FormatPrincipalVariation(stats.PrincipalVariation, stats.PrincipalVariationMovesCount);
112112

113-
Send($"info depth {stats.Depth} seldepth {stats.SelectiveDepth} time {stats.SearchTime} " +
113+
Send($"info depth {stats.Depth} seldepth {stats.SelectiveDepth} time {stats.SearchTime} " +
114114
$"score {score} nodes {stats.TotalNodes} nps {stats.TotalNodesPerSecond} pv {principalVariation}");
115115

116116
if (_debugMode)

0 commit comments

Comments
 (0)