summaryrefslogtreecommitdiffhomepage
path: root/csharp.html.markdown
diff options
context:
space:
mode:
authorAjit Panigrahi <ajitzero@gmail.com>2019-12-11 12:29:57 +0530
committerGitHub <noreply@github.com>2019-12-11 12:29:57 +0530
commit2432006a8d11a7e0bdcc976f1ec0bd6262a67245 (patch)
tree04f3f9ce1d5e03339bf7e4de0a8e68f7c3b3d850 /csharp.html.markdown
parent2e04696cf7637b10fdf3d25ac9f47623beeb9b0d (diff)
Updated grammar
- An ambiguous sentence, needed full stop (.) - "i.e." instead of "ie."
Diffstat (limited to 'csharp.html.markdown')
-rw-r--r--csharp.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown
index 37573e01..99c76dff 100644
--- a/csharp.html.markdown
+++ b/csharp.html.markdown
@@ -653,10 +653,10 @@ on a new line! ""Wow!"", the masses cried";
return ++count;
}
- // A delegate is a reference to a method
+ // A delegate is a reference to a method.
// To reference the Increment method,
- // first declare a delegate with the same signature
- // ie. takes no arguments and returns an int
+ // first declare a delegate with the same signature,
+ // i.e. takes no arguments and returns an int
public delegate int IncrementDelegate();
// An event can also be used to trigger delegates