diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2014-07-07 08:59:09 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2014-07-07 08:59:09 -0500 |
commit | 89b5ef3551cd75e2b0ee4e29367864d67686e49b (patch) | |
tree | 79c319edcad8736c3791e5b6e4567d2e3f648652 | |
parent | 825f1422a4d9290a7e8d072d87d5ed2787b88fea (diff) | |
parent | 7401ef2411e19d073685a09a668c9aa3a31081f6 (diff) |
Merge pull request #667 from xadhix/patch-1
MethodSignature -> MethodSignatures
-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) { } |