From 1bad2f1b89cad8c7fb3f1cee35d4703f6cb018c3 Mon Sep 17 00:00:00 2001 From: alexey-milovidov Date: Fri, 7 Aug 2020 23:41:57 +0300 Subject: [PATCH] Fix bash, CC @qoega --- docs/en/getting-started/playground.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/getting-started/playground.md b/docs/en/getting-started/playground.md index 1342732b28..7dd49e7d9a 100644 --- a/docs/en/getting-started/playground.md +++ b/docs/en/getting-started/playground.md @@ -48,13 +48,13 @@ The following settings are also enforced: HTTPS endpoint example with `curl`: ``` bash -curl "https://play-api.clickhouse.tech:8443/?query=SELECT+'Play+ClickHouse!';&user=playground&password=clickhouse&database=datasets" +curl "https://play-api.clickhouse.tech:8443/?query=SELECT+'Play+ClickHouse\!';&user=playground&password=clickhouse&database=datasets" ``` TCP endpoint example with [CLI](../interfaces/cli.md): ``` bash -clickhouse client --secure -h play-api.clickhouse.tech --port 9440 -u playground --password clickhouse -q "SELECT 'Play ClickHouse!'" +clickhouse client --secure -h play-api.clickhouse.tech --port 9440 -u playground --password clickhouse -q "SELECT 'Play ClickHouse\!'" ``` ## Implementation Details {#implementation-details} -- GitLab