diff --git a/docs/en/Object-To-Object-Mapping.md b/docs/en/Object-To-Object-Mapping.md index b0dc376f81..f5ca805611 100644 --- a/docs/en/Object-To-Object-Mapping.md +++ b/docs/en/Object-To-Object-Mapping.md @@ -198,7 +198,7 @@ public class MyProfile : Profile { public MyProfile() { - CreateMap() + CreateMap() .ForMember(x => x.CreationTime, map => map.Ignore()); } } @@ -211,7 +211,7 @@ public class MyProfile : Profile { public MyProfile() { - CreateMap() + CreateMap() .Ignore(x => x.CreationTime); } }