fix: formatting (#124)

This commit is contained in:
Saif Eddin Gmati 2022-11-28 19:11:45 +01:00 committed by GitHub
parent ee454dc75b
commit 37d0761ff8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -253,7 +253,7 @@ impl Parser {
self.block(&TokenKind::RightBrace)?
} else {
let mut body = Block::new();
while ! self.is_eof() {
while !self.is_eof() {
body.push(self.top_level_statement()?);
}
body