Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 68194b4

Browse files
committed
C#: Fix typo again.
1 parent 448b080 commit 68194b4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • csharp/extractor/Semmle.Extraction.CIL/Entities

csharp/extractor/Semmle.Extraction.CIL/Entities/Type.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ public abstract class Type : TypeContainer, IMember, IType
8383
/// <summary>
8484
/// Find the method in this type matching the name and signature.
8585
/// </summary>
86-
/// <param name="MethodName">The handle to the name.</param>
86+
/// <param name="methodName">The handle to the name.</param>
8787
/// <param name="signature">
8888
/// The handle to the signature. Note that comparing handles is a valid
8989
/// shortcut to comparing the signature bytes since handles are unique.
9090
/// </param>
9191
/// <returns>The method, or 'null' if not found or not supported.</returns>
92-
internal virtual Method LookupMethod(StringHandle MethodName, BlobHandle signature)
92+
internal virtual Method LookupMethod(StringHandle methodName, BlobHandle signature)
9393
{
9494
return null;
9595
}

0 commit comments

Comments
 (0)