We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29980a9 commit c153dc7Copy full SHA for c153dc7
1 file changed
readme.md
@@ -33,7 +33,10 @@ JQSharp exposes a minimal API surface via the `Jq` static class in the `Devloope
33
using System.Text.Json;
34
using Devlooped;
35
36
-using var doc = JsonDocument.Parse("""{"name":"Alice","age":30}""");
+using var doc = JsonDocument.Parse(
37
+ """
38
+ {"name":"Alice","age":30}
39
+ """);
40
41
// Returns an IEnumerable<JsonElement> with the matching results
42
var results = Jq.Evaluate(".name", doc.RootElement);
0 commit comments