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

@ -1152,7 +1152,7 @@ declare_lint! {
/// ```rust
/// #![feature(box_syntax)]
/// fn main() {
/// let a = (box [1,2,3]).len();
/// let a = (box [1, 2, 3]).len();
/// }
/// ```
///