summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org>2017-08-23 00:32:47 +0300
committerAndre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org>2017-08-23 00:32:47 +0300
commit16d6dc00ce5255d7e7b0a222436414aad0db0cdd (patch)
tree9ec2631cf2a394e4f1b372c189fa07fccd4787a2
parent1ab776fa86e05bde6ebb12c20d702211dea374ab (diff)
Fixed #2810. Corrected a typo in the CSharp tutorial
-rw-r--r--csharp.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown
index 8a631e54..78f9db34 100644
--- a/csharp.html.markdown
+++ b/csharp.html.markdown
@@ -711,7 +711,7 @@ on a new line! ""Wow!"", the masses cried";
// Before .NET 4: (aBike.Accessories & Bicycle.BikeAccessories.Bell) == Bicycle.BikeAccessories.Bell
public BikeAccessories Accessories { get; set; }
- // Static members belong to the type itself rather then specific object.
+ // Static members belong to the type itself rather than specific object.
// You can access them without a reference to any object:
// Console.WriteLine("Bicycles created: " + Bicycle.bicyclesCreated);
public static int BicyclesCreated { get; set; }