From 067e169b93b9d499b4a1001fcd685ab49b0a37e0 Mon Sep 17 00:00:00 2001 From: Amal <56926487+amalkurup89@users.noreply.github.com> Date: Wed, 6 May 2020 22:13:52 +0530 Subject: [PATCH] Docs: Correcting one of the usage in documentation (#24197) * Correcting one of the usage in documentation * Correcting usage of a word * Correcting usage of a word in docs * Correcting same word in 2 more occurrences * Correcting a word in docs * Correcting a word in docs * Update docs/sources/variables/advanced-variable-format-options.md Co-authored-by: Diana Payton <52059945+oddlittlebird@users.noreply.github.com> * Incorporated reviewer's suggestion in other occurrences Co-authored-by: Diana Payton <52059945+oddlittlebird@users.noreply.github.com> --- .../variables/advanced-variable-format-options.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/sources/variables/advanced-variable-format-options.md b/docs/sources/variables/advanced-variable-format-options.md index bebed2fc3f0..9429120d9a4 100644 --- a/docs/sources/variables/advanced-variable-format-options.md +++ b/docs/sources/variables/advanced-variable-format-options.md @@ -26,7 +26,7 @@ An alternative syntax (that might be deprecated in the future) is `[[var_name:op ## CSV -Formats multi-value variable as a comma-separated string. +Formats variables with multiple values as a comma-separated string. ```bash servers = ['test1', 'test2'] @@ -36,7 +36,7 @@ Interpolation result: 'test1,test2' ## Distributed - OpenTSDB -Formats multi-value variable in custom format for OpenTSDB. +Formats variables with multiple values in custom format for OpenTSDB. ```bash servers = ['test1', 'test2'] @@ -56,7 +56,7 @@ Interpolation result: '"test1","test2"' ## Glob - Graphite -Formats multi-value variable into a glob (for Graphite queries). +Formats variables with multiple values into a glob (for Graphite queries). ```bash servers = ['test1', 'test2'] @@ -66,7 +66,7 @@ Interpolation result: '{test1,test2}' ## JSON -Formats multi-value variable as a comma-separated string. +Formats variables with multiple values as a comma-separated string. ```bash servers = ['test1', 'test2'] @@ -76,7 +76,7 @@ Interpolation result: '["test1", "test2"]' ## Lucene - Elasticsearch -Formats multi-value variable in Lucene format for Elasticsearch. +Formats variables with multiple values in Lucene format for Elasticsearch. ```bash servers = ['test1', 'test2'] @@ -96,7 +96,7 @@ Interpolation result: 'foo%28%29bar%20BAZ%2Ctest2' ## Pipe -Formats multi-value variable into a pipe-separated string. +Formats variables with multiple values into a pipe-separated string. ```bash servers = ['test1.', 'test2'] @@ -116,7 +116,7 @@ Interpolation result: '{test.1,test2}' ## Regex -Formats multi-value variable into a regex string. +Formats variables with multiple values into a regex string. ```bash servers = ['test1.', 'test2']