Rellum Rellum

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

Canonical fixes

Before:

message = "hello

After:

message = "hello"

Code example

message = "hello