mirror of
https://github.com/servo/servo.git
synced 2025-08-07 14:35:33 +01:00
Replace some more uses of write!
in components/style
This commit is contained in:
parent
fae2da0f59
commit
5d06c9959f
12 changed files with 33 additions and 28 deletions
|
@ -155,7 +155,7 @@ impl ToCss for KeyframeSelector {
|
|||
let mut iter = self.0.iter();
|
||||
iter.next().unwrap().to_css(dest)?;
|
||||
for percentage in iter {
|
||||
write!(dest, ", ")?;
|
||||
dest.write_str(", ")?;
|
||||
percentage.to_css(dest)?;
|
||||
}
|
||||
Ok(())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue