@@ -44,21 +44,21 @@ private Mapper(MapperContext context)
4444 /// An instance specifying the source type for which a mapping plan should be created.
4545 /// </param>
4646 /// <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
4848 /// should be cached.
4949 /// </returns>
50- public static IPlanTargetTypeAndRuleSetSelector < TSource > GetPlanFor < TSource > ( TSource exampleInstance ) => GetPlanFor < TSource > ( ) ;
50+ public static IPlanTargetAndRuleSetSelector < TSource > GetPlanFor < TSource > ( TSource exampleInstance ) => GetPlanFor < TSource > ( ) ;
5151
5252 /// <summary>
5353 /// Create and compile mapping functions for a particular type of mapping of the source type
5454 /// specified by the type argument.
5555 /// </summary>
5656 /// <typeparam name="TSource">The source type for which to create the mapping functions.</typeparam>
5757 /// <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
5959 /// should be cached.
6060 /// </returns>
61- public static IPlanTargetTypeAndRuleSetSelector < TSource > GetPlanFor < TSource > ( ) => Default . GetPlanFor < TSource > ( ) ;
61+ public static IPlanTargetAndRuleSetSelector < TSource > GetPlanFor < TSource > ( ) => Default . GetPlanFor < TSource > ( ) ;
6262
6363 /// <summary>
6464 /// 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
170170
171171 internal MapperContext Context { get ; }
172172
173- IPlanTargetTypeAndRuleSetSelector < TSource > IMapper . GetPlanFor < TSource > ( TSource exampleInstance ) => GetPlan < TSource > ( ) ;
173+ IPlanTargetAndRuleSetSelector < TSource > IMapper . GetPlanFor < TSource > ( TSource exampleInstance ) => GetPlan < TSource > ( ) ;
174174
175- IPlanTargetTypeAndRuleSetSelector < TSource > IMapper . GetPlanFor < TSource > ( ) => GetPlan < TSource > ( ) ;
175+ IPlanTargetAndRuleSetSelector < TSource > IMapper . GetPlanFor < TSource > ( ) => GetPlan < TSource > ( ) ;
176176
177177 IPlanTargetSelector < TSource > IMapper . GetPlansFor < TSource > ( TSource exampleInstance ) => GetPlan < TSource > ( ) ;
178178
0 commit comments