1
Fork 0

More consistently use spaces after commas in lists in docs

This commit is contained in:
Carol (Nichols || Goulding) 2020-11-21 14:43:34 -05:00
parent d806d65657
commit ae17d7d455
No known key found for this signature in database
GPG key ID: D04B39A6CA243902
8 changed files with 18 additions and 18 deletions

View file

@ -1719,7 +1719,7 @@ declare_lint! {
///
/// impl<T: ?Sized> MyIterator for T where T: Iterator { }
///
/// let x = vec![1,2,3];
/// let x = vec![1, 2, 3];
/// let _ = x.iter().is_sorted();
/// ```
///