diff options
author | Adhithya R <xadhix@gmail.com> | 2014-07-07 16:38:17 +0530 |
---|---|---|
committer | Adhithya R <xadhix@gmail.com> | 2014-07-07 16:38:17 +0530 |
commit | 7401ef2411e19d073685a09a668c9aa3a31081f6 (patch) | |
tree | 79c319edcad8736c3791e5b6e4567d2e3f648652 | |
parent | 825f1422a4d9290a7e8d072d87d5ed2787b88fea (diff) |
MethodSignature -> MethodSignatures
Possible typo. Text mentions method names being the same but they weren't. Corrected.
-rw-r--r-- | csharp.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown index 4fa8deba..136f6c50 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -367,7 +367,7 @@ on a new line! ""Wow!"", the masses cried"; } // Methods can have the same name, as long as the signature is unique - public static void MethodSignature(string maxCount) + public static void MethodSignatures(string maxCount) { } |