Skip to content

Commit

Permalink
Add missing commas to rustc_ast_pretty::pp docs
Browse files Browse the repository at this point in the history
  • Loading branch information
camelid authored Dec 28, 2020
1 parent 257becb commit 8d5dc8c
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 8d5dc8c

Please sign in to comment.