We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21692ca commit 8e613eeCopy full SHA for 8e613ee
1 file changed
trilogy-parser/src/syntax/syntax_error.rs
@@ -81,10 +81,9 @@ impl Display for SyntaxError {
81
f,
82
"the $ operator prefixing a tagged template requires a tag identifier"
83
)?,
84
- ErrorKind::DoMissingParameterList => write!(
85
- f,
86
- "a `do` closure requires a parameter list, even if empty"
87
- )?,
+ ErrorKind::DoMissingParameterList => {
+ write!(f, "a `do` closure requires a parameter list, even if empty")?
+ }
88
}
89
90
Ok(())
0 commit comments