Fix code style issues

This commit is contained in:
Igor Aleksanov 2020-10-04 09:26:39 +03:00
parent 50a147dcdf
commit 9ea57cac0e
3 changed files with 7 additions and 4 deletions

View file

@ -21,7 +21,7 @@ pub fn validate_module_item(
owner: ModuleDefId,
sink: &mut DiagnosticSink<'_>,
) {
let _p = profile::span("validate_body");
let _p = profile::span("validate_module_item");
let mut validator = decl_check::DeclValidator::new(owner, sink);
validator.validate_item(db);
}