From: Nicolas Williams Date: Tue, 5 Aug 2014 06:14:04 +0000 (-0500) Subject: Fix docs (missing backquotes) X-Git-Tag: jq-1.5rc1~98 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2518b3a34f90652ca747bf88074ae476b3bed2a6;p=jq Fix docs (missing backquotes) --- diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml index 4dffd43..841637c 100644 --- a/docs/content/3.manual/manual.yml +++ b/docs/content/3.manual/manual.yml @@ -1255,7 +1255,7 @@ sections: output: ['[1,2,4,8,16,32,64]'] - - title: "`recurse(f)`, `recurse`, `recurse(f; condition), `recurse_down`" + - title: "`recurse(f)`, `recurse`, `recurse(f; condition)`, `recurse_down`" body: | The `recurse(f)` function allows you to search through a @@ -1280,7 +1280,7 @@ sections: When called without an argument, `recurse` is equivalent to `recurse(.[]?)`. - `recurse(f) is identical to `recurse(f; . != null)` and can be + `recurse(f)` is identical to `recurse(f; . != null)` and can be used without concerns about recursion depth. `recurse(f; condition)` is a generator which begins by