From 2f102cdbf285ad444536de52ea97729a4593c9f0 Mon Sep 17 00:00:00 2001 From: Matthias Altmann Date: Fri, 19 Oct 2018 17:56:26 +0200 Subject: [PATCH] Grammar fix Would not use simple past here --- content/csharp/getting-started/hello-world.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/csharp/getting-started/hello-world.md b/content/csharp/getting-started/hello-world.md index 9c67b48..8f9e723 100644 --- a/content/csharp/getting-started/hello-world.md +++ b/content/csharp/getting-started/hello-world.md @@ -56,7 +56,7 @@ After the ``using`` statements, the code declares its namespace: namespace ConsoleApplication ``` -Again, it's a good idea to use namespaces to keep larger codebases organized. ``namespace`` is a language keyword; *ConsoleApplication* is an identifier. In this case, the ``ConsoleApplication`` namespace has only one element in it (the ``Program`` class), but this would grow as the program grew in complexity. Namespaces use curly braces (``{`` and ``}``) to denote which types belong within the namespace. Namespaces are optional; you'll frequently see they're omitted from the small samples shown in this tutorial. +Again, it's a good idea to use namespaces to keep larger codebases organized. ``namespace`` is a language keyword; *ConsoleApplication* is an identifier. In this case, the ``ConsoleApplication`` namespace has only one element in it (the ``Program`` class), but this would grow as the program becomes more complex. Namespaces use curly braces (``{`` and ``}``) to denote which types belong within the namespace. Namespaces are optional; you'll frequently see they're omitted from the small samples shown in this tutorial. Inside the namespace's scope (defined by its curly braces), a ``class`` called "Program" is created: ```c#