Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 316 Bytes

E_UNCLOSED_CURLY_BRACE.md

File metadata and controls

25 lines (17 loc) · 316 Bytes

E_UNCLOSED_CURLY_BRACE

This exception is raised when the number of opened and closed mustache braces mis-matches.

Invalid

{{ 2 + 2 }
{{{ `<p>${username}</p>` }}

Following are the valid expressions

Valid

{{ 2 + 2 }}
{{{ `<p>${username}</p>` }}}