diff options
author | Andy Feller <andrew.feller@gmail.com> | 2017-11-28 08:18:24 -0500 |
---|---|---|
committer | Andy Feller <andrew.feller@gmail.com> | 2017-11-28 09:29:11 -0500 |
commit | f61e1f49b2231dfd4828f79bc2d4c7241ee937b3 (patch) | |
tree | f7cd37cf66f78644017f2afdd10dd52352ca8d86 /distro/common/markdown | |
parent | ca777b8d442c29aa7322e98eb8c3feb4f4c84936 (diff) | |
download | chef-f61e1f49b2231dfd4828f79bc2d4c7241ee937b3.tar.gz |
Fixing missing and/or inconsistent quoting in knife search documentation
Obvious fix.
Signed-off-by: Andy Feller <andrew.feller@gmail.com>
Diffstat (limited to 'distro/common/markdown')
-rw-r--r-- | distro/common/markdown/man1/knife-search.mkd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distro/common/markdown/man1/knife-search.mkd b/distro/common/markdown/man1/knife-search.mkd index b289b2c83b..31a1d6e0f1 100644 --- a/distro/common/markdown/man1/knife-search.mkd +++ b/distro/common/markdown/man1/knife-search.mkd @@ -50,7 +50,7 @@ query syntax. The following data types are indexed for search: Data bags are indexed by the data bag's name. For example, to search a data bag named "admins": - knife search admins "field:search_pattern" + knife search admins 'field:search_pattern' ## QUERY SYNTAX @@ -95,7 +95,7 @@ within a search pattern. Range searches allows one to match values between two given values. To match values between X and Y, inclusively, use square brackets: - knife search INDEX 'field:[X TO Y] + knife search INDEX 'field:[X TO Y]' To match values between X and Y, exclusively, use curly brackets: |