ソースを参照

"Hello, world" -> "Hello, World!"

Nikita Tsukanov 11 年 前
コミット
7741db8556
1 ファイル変更1 行追加1 行削除
  1. 1 1
      evhttp-sharp/src/Program.cs

+ 1 - 1
evhttp-sharp/src/Program.cs

@@ -28,7 +28,7 @@ namespace EvHttpSharpBenchmark
 			if (!req.Uri.Contains("plaintext"))
 			{
 				var sw = new StringWriter();
-				Serializer.Serialize(sw, new {message = "Hello, world"});
+				Serializer.Serialize(sw, new {message = "Hello, World!"});
 				resp = sw.ToString();
 				headers["Content-Type"] = "application/json";
 			}