Skip to content

Commit

Permalink
docs: Apply Jim's suggestions
Browse files Browse the repository at this point in the history
Co-authored-by: Jim Galasyn <[email protected]>
  • Loading branch information
spena and JimGalasyn authored Nov 5, 2020
1 parent e03adec commit 64e2937
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/developer-guide/variable-substitution.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ ksqlDB doesn't add single-quotes to values during variable substitution. Also, y
Escape substitution variables
-----------------------------

If you want to escape a variable reference, so it is not substituted, then use double `$$` characters.
To escape a variable reference, so it isn't substituted, use double dollar-sign characters, `$$`. The following example shows how to escape a variable named `format`.
```
DEFINE format = 'AVRO';
SELECT '$${format}' FROM stream;
```
The above query will become `SELECT '${format}' FROM stream`
ksqlDB converts the previous query to `SELECT '${format}' FROM stream`.

Context for substitution variables
----------------------------------
Expand Down

0 comments on commit 64e2937

Please sign in to comment.