I was looking at the example docs and saw examples like .foo, .foo.bar, .foo?. That was all in one code block so I thought together it was a valid jq expression. After trying it and getting an error I realised that each example was comma separated.
What do you think about changing the examples to something like:
I was looking at the example docs and saw examples like
.foo, .foo.bar, .foo?
. That was all in one code block so I thought together it was a valid jq expression. After trying it and getting an error I realised that each example was comma separated.What do you think about changing the examples to something like:
.foo
.foo.bar
.foo?
I think that would make it clearer.