From: Stephen Dolan Date: Sun, 21 Oct 2012 21:16:23 +0000 (+0100) Subject: Fix a mistake in the docs. Fixes #10 X-Git-Tag: jq-1.1~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=976e4ff7114bd0f876a95edcf88d933c804be746;p=jq Fix a mistake in the docs. Fixes #10 --- diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml index 50c63ec..d3d4c42 100644 --- a/docs/content/3.manual/manual.yml +++ b/docs/content/3.manual/manual.yml @@ -166,7 +166,7 @@ sections: input: '{"foo": 42, "bar": "something else", "baz": true}' output: ['42', '"something else"'] - - program: "[.user, .projects[]]" + - program: ".user, .projects[]" input: '{"user":"stedolan", "projects": ["jq", "wikiflow"]}' output: ['"stedolan"', '"jq"', '"wikiflow"']