From 6c3f93c97438c3c77b94fc504d7a7d2a6c91b364 Mon Sep 17 00:00:00 2001 From: Christian Franke Date: Sun, 21 Apr 2019 09:27:04 +0200 Subject: [PATCH] Docs: Fix advanced variable formatting examples (#16691) --- docs/sources/reference/templating.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/sources/reference/templating.md b/docs/sources/reference/templating.md index 2be2b6863a9..e3fc4e2ca8f 100644 --- a/docs/sources/reference/templating.md +++ b/docs/sources/reference/templating.md @@ -57,7 +57,7 @@ Formats multi-value variable into a regex string. ```bash servers = ['test1.', 'test2'] String to interpolate: '${servers:regex}' -Interpolation result: '(test\.|test2)' +Interpolation result: '(test1\.|test2)' ``` ### Pipe @@ -66,7 +66,7 @@ Formats multi-value variable into a pipe-separated string. ```bash servers = ['test1.', 'test2'] String to interpolate: '${servers:pipe}' -Interpolation result: 'test.|test2' +Interpolation result: 'test1.|test2' ``` ### Csv @@ -75,7 +75,7 @@ Formats multi-value variable as a comma-separated string. ```bash servers = ['test1', 'test2'] String to interpolate: '${servers:csv}' -Interpolation result: 'test,test2' +Interpolation result: 'test1,test2' ``` ### Json