Rollup merge of #80457 - camelid:pretty-docs-commas, r=jonas-schievink

Add missing commas to `rustc_ast_pretty::pp` docs
This commit is contained in:
Yuki Okushi 2020-12-30 18:15:13 +09:00 committed by GitHub
commit d8cabe1855
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,7 +75,7 @@
//! breaking inconsistently to become //! breaking inconsistently to become
//! //!
//! ``` //! ```
//! foo(hello, there //! foo(hello, there,
//! good, friends); //! good, friends);
//! ``` //! ```
//! //!
@ -83,7 +83,7 @@
//! //!
//! ``` //! ```
//! foo(hello, //! foo(hello,
//! there //! there,
//! good, //! good,
//! friends); //! friends);
//! ``` //! ```