Extract spacing from parse::header::* items into explicit Spaced enum

This commit is contained in:
Joshua Warner 2021-12-13 17:13:46 -08:00
parent 86c8764012
commit 0786e554c6
11 changed files with 378 additions and 470 deletions

View file

@ -83,7 +83,7 @@ where
}
/// A Located formattable value is also formattable
impl<'a, T> Formattable for Located<T>
impl<T> Formattable for Located<T>
where
T: Formattable,
{