E0006: invalid string escape
Generated from rellum-diagnostics/src/db.rs.
Explanation
A backslash inside a string starts an escape sequence. If the string ends before the escaped character appears, the lexer cannot finish the literal.
Common causes
- ending a string with a single trailing backslash
- forgetting to escape a literal backslash as
\\ - editing out the character after an escape marker
Canonical fixes
- complete or escape the trailing backslash
- remove the stray backslash if no escape was intended