document format_args! - fix trailing whitespace

This commit is contained in:
Mazdak Farrokhzad 2018-03-22 10:06:17 +01:00
parent afff64e7a4
commit 613fb8bc2c

View file

@ -1682,7 +1682,7 @@ impl<'a> Formatter<'a> {
///
/// struct Arm<'a, L: 'a, R: 'a>(&'a (L, R));
/// struct Table<'a, K: 'a, V: 'a>(&'a [(K, V)], V);
///
///
/// impl<'a, L, R> fmt::Debug for Arm<'a, L, R>
/// where
/// L: 'a + fmt::Debug, R: 'a + fmt::Debug