Skip to content

Commit ab01ca6

Browse files
committed
Update js-utils.md
1 parent accedb6 commit ab01ca6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MyApp/_pages/js-utils.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ if (root.TryGetProperty("contents", out var contentsElement)
142142
Console.WriteLine(jsonDocument.RootElement);
143143
```
144144

145-
But as it's a read-only data structure you'd need to reconstruct the JSON to modify it. To create an equivalent modified JSON for logging, you would use `JsonNode` for mutable operations instead:
145+
But as it's a read-only data structure you'd need to reconstruct the JSON to modify it. To create an equivalent modified JSON for logging, you could use `JsonNode` for mutable operations instead:
146146

147147
```csharp
148148
using System.Text.Json;

0 commit comments

Comments
 (0)