Skip to content
Prev Previous commit
cosmetic
  • Loading branch information
lbargaoanu authored Jun 25, 2018
commit cd9d962f9c0a90dbe742efa5d88e79a361d10d01
8 changes: 4 additions & 4 deletions src/AutoMapper/Configuration/IProfileConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public interface IProfileConfiguration

/// <summary>
/// Specify which properties should be mapped.
/// By default only public properties are mapped.e
/// By default only public properties are mapped.
/// </summary>
Func<PropertyInfo, bool> ShouldMapProperty { get; }

Expand All @@ -40,8 +40,8 @@ public interface IProfileConfiguration
Func<FieldInfo, bool> ShouldMapField { get; }

/// <summary>
/// Specify which constructors should be mapped.
/// By default all non-static constructors are mapped.
/// Specify which constructors should be considered for the destination objects.
/// By default all constructors are considered.
/// </summary>
Func<ConstructorInfo, bool> ShouldUseConstructor { get; }

Expand All @@ -53,4 +53,4 @@ public interface IProfileConfiguration
IEnumerable<ITypeMapConfiguration> OpenTypeMapConfigs { get; }
IEnumerable<ValueTransformerConfiguration> ValueTransformers { get; }
}
}
}