Skip to content

Commit d8cabe1

Browse files
authored
Rollup merge of #80457 - camelid:pretty-docs-commas, r=jonas-schievink
Add missing commas to `rustc_ast_pretty::pp` docs
2 parents 6064be7 + 8d5dc8c commit d8cabe1

File tree

1 file changed

+2
-2
lines changed
  • compiler/rustc_ast_pretty/src

1 file changed

+2
-2
lines changed

compiler/rustc_ast_pretty/src/pp.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,15 @@
7575
//! breaking inconsistently to become
7676
//!
7777
//! ```
78-
//! foo(hello, there
78+
//! foo(hello, there,
7979
//! good, friends);
8080
//! ```
8181
//!
8282
//! whereas a consistent breaking would yield:
8383
//!
8484
//! ```
8585
//! foo(hello,
86-
//! there
86+
//! there,
8787
//! good,
8888
//! friends);
8989
//! ```

0 commit comments

Comments
 (0)