浏览代码

"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"))
 			if (!req.Uri.Contains("plaintext"))
 			{
 			{
 				var sw = new StringWriter();
 				var sw = new StringWriter();
-				Serializer.Serialize(sw, new {message = "Hello, world"});
+				Serializer.Serialize(sw, new {message = "Hello, World!"});
 				resp = sw.ToString();
 				resp = sw.ToString();
 				headers["Content-Type"] = "application/json";
 				headers["Content-Type"] = "application/json";
 			}
 			}