@@ -44,21 +44,21 @@ private Mapper(MapperContext context)
44
44
/// An instance specifying the source type for which a mapping plan should be created.
45
45
/// </param>
46
46
/// <returns>
47
- /// An IPlanTargetTypeAndRuleSetSelector with which to specify the type of mapping the functions for which
47
+ /// An IPlanTargetAndRuleSetSelector with which to specify the type of mapping the functions for which
48
48
/// should be cached.
49
49
/// </returns>
50
- public static IPlanTargetTypeAndRuleSetSelector < TSource > GetPlanFor < TSource > ( TSource exampleInstance ) => GetPlanFor < TSource > ( ) ;
50
+ public static IPlanTargetAndRuleSetSelector < TSource > GetPlanFor < TSource > ( TSource exampleInstance ) => GetPlanFor < TSource > ( ) ;
51
51
52
52
/// <summary>
53
53
/// Create and compile mapping functions for a particular type of mapping of the source type
54
54
/// specified by the type argument.
55
55
/// </summary>
56
56
/// <typeparam name="TSource">The source type for which to create the mapping functions.</typeparam>
57
57
/// <returns>
58
- /// An IPlanTargetTypeAndRuleSetSelector with which to specify the type of mapping the functions for which
58
+ /// An IPlanTargetAndRuleSetSelector with which to specify the type of mapping the functions for which
59
59
/// should be cached.
60
60
/// </returns>
61
- public static IPlanTargetTypeAndRuleSetSelector < TSource > GetPlanFor < TSource > ( ) => Default . GetPlanFor < TSource > ( ) ;
61
+ public static IPlanTargetAndRuleSetSelector < TSource > GetPlanFor < TSource > ( ) => Default . GetPlanFor < TSource > ( ) ;
62
62
63
63
/// <summary>
64
64
/// Create and compile mapping functions for mapping from the source type specified by the given
@@ -170,9 +170,9 @@ public static dynamic Flatten<TSource>(TSource source) where TSource : class
170
170
171
171
internal MapperContext Context { get ; }
172
172
173
- IPlanTargetTypeAndRuleSetSelector < TSource > IMapper . GetPlanFor < TSource > ( TSource exampleInstance ) => GetPlan < TSource > ( ) ;
173
+ IPlanTargetAndRuleSetSelector < TSource > IMapper . GetPlanFor < TSource > ( TSource exampleInstance ) => GetPlan < TSource > ( ) ;
174
174
175
- IPlanTargetTypeAndRuleSetSelector < TSource > IMapper . GetPlanFor < TSource > ( ) => GetPlan < TSource > ( ) ;
175
+ IPlanTargetAndRuleSetSelector < TSource > IMapper . GetPlanFor < TSource > ( ) => GetPlan < TSource > ( ) ;
176
176
177
177
IPlanTargetSelector < TSource > IMapper . GetPlansFor < TSource > ( TSource exampleInstance ) => GetPlan < TSource > ( ) ;
178
178
0 commit comments