Merge pull request #11717 from llakala/patch-1

docs: clarify syntax for escaping dollar curlies
This commit is contained in:
tomberek 2024-10-21 08:34:39 -04:00 committed by GitHub
commit 1ed166315c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -150,6 +150,21 @@ These special characters are escaped as follows:
`''\` escapes any other character.
A "dollar-curly" (`${`) can be written as follows:
> **Example**
>
> ```nix
> ''
> echo ''${PATH}
> ''
> ```
>
> "echo ${PATH}\n"
> **Note**
>
> This differs from the syntax for escaping a dollar-curly within double quotes (`"\${"`). Be aware of which one is needed at a given moment.
A "double-dollar-curly" (`$${`) can be written literally.
> **Example**