Skip to content

Commit b0db48a

Browse files
committed
template doesn't like capital C#
1 parent 83ff89b commit b0db48a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_posts/2023/2023-11-09-decimals-are-weird.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ I've discovered another odd consequence of what is probably fully intentional co
1010

1111
Okay, that's not strictly true, but it does seem so if you're comparing the values in JSON.
1212

13-
```C#
13+
```c#
1414
var a = 4m;
1515
var b = 4.0m;
1616

@@ -59,7 +59,7 @@ When I built the extension method, I already had one for `JsonElement`. (It han
5959

6060
This has an interesting nuance to the problem in that if the `JsonNode`s are parsed:
6161

62-
```C#
62+
```c#
6363
var jsonA = JsonNode.Parse("4");
6464
var jsonB = JsonNode.Parse("4.0");
6565

0 commit comments

Comments
 (0)