Skip to content

Commit

Permalink
Fix Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sasial-dev committed Dec 16, 2023
1 parent 86c1df2 commit 49e130c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zap/src/output/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ impl<'a> Display for ClientFile<'a> {
let file = self.0;

if file.ev_decls.is_empty() {
return Ok(())
return Ok(());
}

write!(f, "{}", include_str!("base.luau"))?;
Expand Down
2 changes: 1 addition & 1 deletion zap/src/output/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ impl<'a> Display for ServerFile<'a> {
let file = &self.0;

if file.ev_decls.is_empty() {
return Ok(())
return Ok(());
}

write!(f, "{}", include_str!("base.luau"))?;
Expand Down

0 comments on commit 49e130c

Please sign in to comment.