Auto merge of #16023 - emilio:nits, r=emilio

style: Fix some nits

I was looking at the code that used Length for #16015, and found these two.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16023)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-03-18 07:24:52 -07:00 committed by GitHub
commit 7fcba10614
2 changed files with 7 additions and 10 deletions

View file

@ -369,9 +369,6 @@ pub enum Length {
/// A calc expression.
///
/// https://drafts.csswg.org/css-values/#calc-notation
///
/// TODO(emilio): We have more `Calc` variants around, we should only use
/// one.
Calc(Box<CalcLengthOrPercentage>, AllowedNumericType),
}