diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-01-06 21:06:48 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-01-06 21:06:48 +0100 |
| commit | 59d811aeba4491d54d2b0220109fd21a8f838b9b (patch) | |
| tree | e3c22a86592252c157cb268404d5e176d60cac55 /src/pretty.rs | |
| parent | 7b4d4d6002a9c3da8fafd912f3c7b2da617f19c0 (diff) | |
Inline literal enum into expression enum 🔀
Diffstat (limited to 'src/pretty.rs')
| -rw-r--r-- | src/pretty.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pretty.rs b/src/pretty.rs index a7482869..f6398495 100644 --- a/src/pretty.rs +++ b/src/pretty.rs @@ -39,7 +39,7 @@ impl Printer { Write::write_fmt(self, fmt) } - /// Write a comma-separated list of items. + /// Write a list of items joined by a joiner. pub fn join<T, I, F>(&mut self, items: I, joiner: &str, mut write_item: F) where I: IntoIterator<Item = T>, |
