summaryrefslogtreecommitdiffhomepage
path: root/csharp.html.markdown
diff options
context:
space:
mode:
authorGeoff Liu <cangming.liu@gmail.com>2015-12-21 15:22:23 -0500
committerGeoff Liu <cangming.liu@gmail.com>2015-12-21 15:22:23 -0500
commitc139e9aefe157fcb7978a7e24ff3289f295c8ef5 (patch)
tree26e7003478e136e5c5d35d859c3b689367436ca1 /csharp.html.markdown
parenta729eebccab0bc93684d1ec9651fa9cf7fdb5f77 (diff)
parent23b35d9da0b3c1de5ff6a0b262b08020f0f56c4f (diff)
Merge pull request #1960 from roymiloh/master
[C#/en] Fix to "extension methods"
Diffstat (limited to 'csharp.html.markdown')
-rw-r--r--csharp.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown
index 677c2591..7d7f4340 100644
--- a/csharp.html.markdown
+++ b/csharp.html.markdown
@@ -630,7 +630,7 @@ on a new line! ""Wow!"", the masses cried";
public static class Extensions
{
- // EXTENSION FUNCTIONS
+ // EXTENSION METHODS
public static void Print(this object obj)
{
Console.WriteLine(obj.ToString());