Skip to content

Commit 606d222

Browse files
committed
Correct expression variable name
1 parent cda5165 commit 606d222

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AutoMapper.Collection/Mappers/EquivalentExpressionAddRemoveCollectionMapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public static TDestination Map<TSource, TSourceItem, TDestination, TDestinationI
6262
return destination;
6363
}
6464

65-
private static readonly MethodInfo _mapMethodInfo = typeof(EquivalentExpressionAddRemoveCollectionMapper).GetRuntimeMethods().Single(_ => _.IsStatic && _.Name == nameof(Map));
65+
private static readonly MethodInfo _mapMethodInfo = typeof(EquivalentExpressionAddRemoveCollectionMapper).GetRuntimeMethods().Single(x => x.IsStatic && x.Name == nameof(Map));
6666

6767
public bool IsMatch(TypePair typePair)
6868
{

0 commit comments

Comments
 (0)