Add multiple authors.
(mut self, authors: impl IntoIterator<Item = Author>)
| 365 | |
| 366 | /// Add multiple authors. |
| 367 | pub fn authors(mut self, authors: impl IntoIterator<Item = Author>) -> Self { |
| 368 | self.authors.extend(authors); |
| 369 | self |
| 370 | } |
| 371 | |
| 372 | /// Build the change header. |
| 373 | /// |