diff --git a/content/csharp/getting-started/hello-world.md b/content/csharp/getting-started/hello-world.md index 9c67b48..7526858 100644 --- a/content/csharp/getting-started/hello-world.md +++ b/content/csharp/getting-started/hello-world.md @@ -3,7 +3,7 @@ by [Steve Smith](http://deviq.com/me/steve-smith) ## The Hello World Project -In this lesson, you're going to learn about the different parts of a very simple program that displays the message, "Hello World!" You'll also learn what happens when you build and run the application, and you'll learn about some common errors you may encounter and how to correct them. +In this lesson, you're going to learn about the different parts of a very simple program that displays the message "Hello World!". You'll also learn what happens when you build and run the application, and you'll learn about some common errors you may encounter and how to correct them. A C# program begins with a *Main* method, usually found in a file called *Program.cs*, like this one: