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
Dylan-DPC authored Dec 30, 2020
2 parents 13ef40a + 8d5dc8c commit fd364d6
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 fd364d6

Please sign in to comment.