Skip to content

Commit 8d5dc8c

Browse files
authored
Add missing commas to rustc_ast_pretty::pp docs
1 parent 257becb commit 8d5dc8c

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)