E2007 Parse Errors

unclosed-interpolation

string interpolation not closed

When this occurs

`"Hello ${name"` without closing `}`

Example error message

error[E2007]: unclosed interpolation in string

How to fix

Add `}` to close your string interpolation `${...}`.

Related errors