Skip to content

Commit 60b2b43

Browse files
committed
Fix typos
1 parent 602d8dd commit 60b2b43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AutoMapper.Extensions.ExpressionMapping/Impl/SourceInjectedQueryProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ public TResult Execute<TResult>(Expression expression)
111111
destResult = (IQueryable<TDestination>)GetMapExpressions(queryExpressions).Aggregate(sourceResult, Select);
112112
}
113113
// case #2: query is arbitrary ("manual") projection
114-
// exaple: users.UseAsDataSource().For<UserDto>().Select(user => user.Age).ToList()
114+
// example: users.UseAsDataSource().For<UserDto>().Select(user => user.Age).ToList()
115115
// in case an arbitrary select-statement is enumerated, we do not need to map the expression at all
116-
// and cann safely return it
116+
// and can safely return it
117117
else if (IsProjection(resultType, sourceExpression))
118118
{
119119
var sourceResult = _dataSource.Provider.CreateQuery(sourceExpression);

0 commit comments

Comments
 (0)