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 `... ```