From 3f65c799981f5a1ee1d39a6fea85bbaf8c167c51 Mon Sep 17 00:00:00 2001 From: Dominik Prokop Date: Mon, 21 Dec 2020 16:54:01 +0100 Subject: [PATCH] Docs: Fix raw format variable docs (#29945) --- docs/sources/variables/advanced-variable-format-options.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/sources/variables/advanced-variable-format-options.md b/docs/sources/variables/advanced-variable-format-options.md index 9bcd4f9e330..b717cb4edc4 100644 --- a/docs/sources/variables/advanced-variable-format-options.md +++ b/docs/sources/variables/advanced-variable-format-options.md @@ -105,9 +105,9 @@ Interpolation result: 'test1.|test2' Turns off data source-specific formatting, such as single quotes in an SQL query. ```bash -servers = ['test1.', 'test2'] +servers = ['test.1', 'test2'] String to interpolate: '${var_name:raw}' -Interpolation result: '{test.1,test2}' +Interpolation result: 'test.1,test2' ``` ## Regex @@ -148,4 +148,4 @@ Formats single- and multi-valued variables into their text representation. For a servers = ["test1", "test2"] String to interpolate: '${servers:text}' Interpolation result: "test1 + test2" -``` \ No newline at end of file +```