Skip to content

Commit 1984319

Browse files
committed
Use appropriate *backward* slash
'\' should be backward slash, not forward slash. Closes: #360 Reported by @gmcelhoe Signed-off-by: Kentaro Hayashi <hayashi@clear-code.com>
1 parent 776a998 commit 1984319

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configuration/config-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ The `config-xxx` mixins use `"${}"`, not `"#{}"`. These embedded configurations
605605

606606
### In double-quoted string literal, `\` is the escape character
607607

608-
The forward slash `\` is interpreted as an escape character. You need `\` for setting `"`, `\r`, `\n`, `\t`, `\` or several characters in double-quoted string literal.
608+
The backslash `\` is interpreted as an escape character. You need `\` for setting `"`, `\r`, `\n`, `\t`, `\` or several characters in double-quoted string literal.
609609

610610
```text
611611
str_param "foo\nbar" # \n is interpreted as actual LF character

0 commit comments

Comments
 (0)