From 910b1baaf71b5928528f0f27aba9d1aeafd3a214 Mon Sep 17 00:00:00 2001 From: Max Dionysius Date: Sat, 17 Nov 2018 03:50:35 +0100 Subject: [PATCH] Added return type information of WriteLine (#21913) * Added return type information of WriteLine * Fixed grammar --- guide/english/csharp/hello-world/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/csharp/hello-world/index.md b/guide/english/csharp/hello-world/index.md index d01d6082a2..f79b490f7d 100644 --- a/guide/english/csharp/hello-world/index.md +++ b/guide/english/csharp/hello-world/index.md @@ -4,7 +4,7 @@ title: Hello World # Hello World -To write some text on the console we use the `Console.WriteLine()`. This method takes a string as input. +To write some text on the console we use the `Console.WriteLine()`. This method takes a string as input and has a return type of `void`. ## Example ```csharp