Update jq docs to show correct escaping

As seen here: 31e6c76b7d/lib/jq.bzl (L87)

The docs show the incorrect escaping sequence.
This commit is contained in:
Chris Chinchilla 2024-11-18 09:39:00 +01:00 committed by GitHub
parent eb4c47f734
commit c25dac2950
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

2
docs/jq.md generated
View File

@ -91,7 +91,7 @@ jq(
"--raw-input",
"--slurp",
],
filter = "{ deps: split("\n") | map(select(. | length > 0)) }",
filter = "{ deps: split(\"\\n\") | map(select(. | length > 0)) }",
)
```