Remove uses of format! in components/style/error_reporting.rs

This commit is contained in:
Simon Sapin 2017-09-02 10:09:59 +02:00
parent f6d20e6461
commit 17aa04b712
4 changed files with 75 additions and 72 deletions

View file

@ -280,7 +280,7 @@ impl ParseErrorReporter for CSSInvalidErrorReporterTest {
url: url.clone(),
line: location.line,
column: location.column,
message: error.to_string()
message: error.to_string(),
}
);
}