Skip to content

Commit 2168a8b

Browse files
authored
Fixed typo in StackTraceHelper.cs (#37280)
1 parent 9bb2afb commit 2168a8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Shared/StackTrace/StackFrame/StackTraceHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ private static bool HasStackTraceHiddenAttribute(MemberInfo memberInfo)
234234
IList<CustomAttributeData> attributes;
235235
try
236236
{
237-
// Accessing MembmerInfo.GetCustomAttributesData throws for some types (such as types in dynamically generated assemblies).
237+
// Accessing MemberInfo.GetCustomAttributesData throws for some types (such as types in dynamically generated assemblies).
238238
// We'll skip looking up StackTraceHiddenAttributes on such types.
239239
attributes = memberInfo.GetCustomAttributesData();
240240
}

0 commit comments

Comments
 (0)