Skip to content

Commit

Permalink
Fixed formatting errors & false positive with warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Razican committed Jan 30, 2022
1 parent 6fbfb0e commit e1c345b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion boa/src/syntax/ast/node/object/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ impl Object {
}
});
}
buf.push_str(&format!("{}}}", indentation));
buf.push_str(&format!("{}}}", " ".repeat(indent_n)));

buf
}
Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
doc-valid-idents = ['ECMAScript', 'JavaScript', 'SpiderMonkey']
doc-valid-idents = ['ECMAScript', 'JavaScript', 'SpiderMonkey', 'GitHub']

0 comments on commit e1c345b

Please sign in to comment.