E0005: unterminated string literal
Generated from rellum-diagnostics/src/db.rs.
Explanation
String literals must close with a double quote before the end of the physical line. The lexer does not continue an unterminated string onto later layout lines.
Common causes
- forgetting the closing quote
- placing a newline inside a string literal
- escaping the closing quote accidentally
Canonical fixes
- add the closing quote on the same line
Before:
message = "hello
After:
message = "hello"
- split multi-line text into explicit string pieces
Code example
message = "hello