From d4084f98bf002f9e74ee277d30ded23c02b522e3 Mon Sep 17 00:00:00 2001 From: Alexander McCord <11488393+alexmccord@users.noreply.github.com> Date: Wed, 17 Nov 2021 12:09:01 -0800 Subject: [PATCH] Fix a mistake at runtime value example. --- rfcs/syntax-string-interpolation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rfcs/syntax-string-interpolation.md b/rfcs/syntax-string-interpolation.md index 4faa6506..0d02d2c5 100644 --- a/rfcs/syntax-string-interpolation.md +++ b/rfcs/syntax-string-interpolation.md @@ -66,7 +66,7 @@ print(`backslash \ that escapes the space is not a part of the string...`) print(`backslash \\ will escape the second backslash...`) print(`Some text that also includes \`...`) --> Some example escaping the braces {like so} ---> backslash that doesn't escape anything is part of the string... +--> backslash that escapes the space is not a part of the string... --> backslash \ will escape the second backslash... --> Some text that also includes `... ```