Skip to content

Commit

Permalink
Rollup merge of rust-lang#80457 - camelid:pretty-docs-commas, r=jonas…
Browse files Browse the repository at this point in the history
…-schievink

Add missing commas to `rustc_ast_pretty::pp` docs
  • Loading branch information
JohnTitor authored Dec 30, 2020
2 parents 6064be7 + 8d5dc8c commit d8cabe1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/rustc_ast_pretty/src/pp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@
//! breaking inconsistently to become
//!
//! ```
//! foo(hello, there
//! foo(hello, there,
//! good, friends);
//! ```
//!
//! whereas a consistent breaking would yield:
//!
//! ```
//! foo(hello,
//! there
//! there,
//! good,
//! friends);
//! ```
Expand Down

0 comments on commit d8cabe1

Please sign in to comment.