Skip to content

Commit 20478fc

Browse files
committed
chore: Tiny change to readme
1 parent ddd6f7e commit 20478fc

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
@@ -104,17 +104,17 @@ John Doe's Cars
104104
```csharp
105105
Car car = new Car
106106
{
107-
Price = 50000m
107+
Price = 50000
108108
};
109109

110-
string result = car.Map("{{ Price:#,##0 }} | {{ Price:N5 }}");
110+
string result = car.Map("{{ Price:#,##0 }} | {{ Price:N2 }}");
111111

112112
Console.WriteLine(result);
113113
```
114114

115115
**Output:**
116116
```
117-
50,000 | 50,000.00000
117+
50,000 | 50,000.00
118118
```
119119
---
120120

0 commit comments

Comments
 (0)