Skip to content

Commit c99e843

Browse files
committed
Fix a clippy lint I missed
1 parent 58e1533 commit c99e843

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parser/src/fstring.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ impl<'a> FStringParser<'a> {
121121
}
122122
}
123123

124-
return Err(UnclosedLbrace);
124+
Err(UnclosedLbrace)
125125
}
126126

127127
fn parse(mut self) -> Result<StringGroup, FStringError> {

0 commit comments

Comments
 (0)