Skip to content
Prev Previous commit
Next Next commit
rename
  • Loading branch information
lbargaoanu authored Jun 24, 2018
commit 0e32388fab10c42ed07133e7484e7a0f13ae9e91
2 changes: 1 addition & 1 deletion docs/Construction.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ You can configure which constructors are considered for the destination object:

```c#
// don't map private constructors
Mapper.Initialize(cfg => cfg.ShouldMapConstructor = ci => !ci.IsPrivate);
Mapper.Initialize(cfg => cfg.ShouldUseConstructor = ci => !ci.IsPrivate);
```