Skip to content

Commit 477c473

Browse files
authored
Follow coding conventions.
1 parent 3541147 commit 477c473

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/get-started/csharp/tutorial-console.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -311,9 +311,9 @@ To fix this error, we must refactor the code that we've previously entered.
311311

312312
#### Revise the code
313313

314-
Rather than rely on the `program` class to handle all the code, we'll divide our app into two classes: `calculator` and `program`.
314+
Rather than rely on the `program` class to handle all the code, we'll divide our app into two classes: `Calculator` and `Program`.
315315

316-
The `calculator` class will handle the bulk of the calculation work, and the `program` class will handle the user interface and error-capturing work.
316+
The `Calculator` class will handle the bulk of the calculation work, and the `Program` class will handle the user interface and error-capturing work.
317317

318318
Let's get started.
319319

@@ -514,7 +514,7 @@ namespace Calculator
514514
static void Main(string[] args)
515515
{
516516
bool endApp = false;
517-
// Display title as the C# console calculator app
517+
// Display title as the C# console calculator app.
518518
Console.WriteLine("Console Calculator in C#\r");
519519
Console.WriteLine("------------------------\n");
520520

0 commit comments

Comments
 (0)