From 5810a2cf415053c41fafb29fa9bc336eaec89bd3 Mon Sep 17 00:00:00 2001 From: Willy David Jr Date: Mon, 1 Apr 2019 02:55:43 +0800 Subject: [PATCH] Corrected spelling of instatiate to instantiate. (#32747) Corrected spelling of instatiate. --- guide/english/csharp/class/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guide/english/csharp/class/index.md b/guide/english/csharp/class/index.md index 22283f9c36..7730da56da 100644 --- a/guide/english/csharp/class/index.md +++ b/guide/english/csharp/class/index.md @@ -3,7 +3,8 @@ title: Class --- ## Class -A class in C# is defined as a reference type. In order to instatiate a variable of a reference type, you must specify the `new` keyword, otherwise the variable will have the default value of `null`. See below for an example. + +A class in C# is defined as a reference type. In order to instantiate a variable of a reference type you must specify the `new` keyword, otherwise the variable will have the default value of `null`. See below for an example. ```csharp // The value of variableOne is null at this point.