Skip to content

Commit

Permalink
Code format
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierHecart committed Sep 29, 2023
1 parent d988f53 commit cf471c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ fn split_bindings(split_guide: &SplitGuide) -> Result<(), String> {
})
.collect::<HashMap<_, _>>();
for file in files.values_mut() {
file.write_all(HEADER.as_bytes()).map_err(|e|e.to_string())?;
file.write_all(HEADER.as_bytes())
.map_err(|e| e.to_string())?;
}
let mut records = group_tokens(Tokenizer {
filename: GENERATION_PATH,
Expand Down

0 comments on commit cf471c6

Please sign in to comment.