Skip to content

Commit 219d005

Browse files
authored
Fix formatting of price parameter in README
1 parent 7fbb9a2 commit 219d005

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ public partial class CreateProductDtoMapper
121121
config.ForCreation<CreateProductDto, Product>()
122122
// Instruct the engine to prioritize using a static factory for creation.
123123
.Try(MappingStrategy.UseStaticFactories)
124-
// The ""price"" parameter of the Product.Create factory is complex.
124+
// The "price" parameter of the Product.Create factory is complex.
125125
// We provide a custom expression to build the Money object from the DTO.
126-
.MapParameter(""price"")
126+
.MapParameter("price")
127127
.FromSource(dto => new Money(dto.PriceAmount, dto.PriceCurrency));
128128
}
129129
}
@@ -200,4 +200,4 @@ Please give a ⭐️ if this project helped you! Your support is much appreciate
200200

201201
## 📝 License
202202

203-
This project is licensed under the **MIT License**.
203+
This project is licensed under the **MIT License**.

0 commit comments

Comments
 (0)