C#: Fix typos.

This commit is contained in:
calum
2018-10-25 13:45:46 +01:00
parent 8cdfb8707c
commit 448b080d4f
2 changed files with 3 additions and 3 deletions

View File

@@ -83,13 +83,13 @@ namespace Semmle.Extraction.CIL.Entities
/// <summary>
/// Find the method in this type matching the name and signature.
/// </summary>
/// <param name="MethodNmae">The handle to the name.</param>
/// <param name="MethodName">The handle to the name.</param>
/// <param name="signature">
/// The handle to the signature. Note that comparing handles is a valid
/// shortcut to comparing the signature bytes since handles are unique.
/// </param>
/// <returns>The method, or 'null' if not found or not supported.</returns>
internal virtual Method LookupMethod(StringHandle MethodNmae, BlobHandle signature)
internal virtual Method LookupMethod(StringHandle MethodName, BlobHandle signature)
{
return null;
}