(mut self, paths: Vec<impl Into<String>>)
| 118 | /// Other modified files will be ignored. |
| 119 | #[must_use] |
| 120 | pub fn paths(mut self, paths: Vec<impl Into<String>>) -> Self { |
| 121 | self.paths = paths.into_iter().map(Into::into).collect(); |
| 122 | self |
| 123 | } |
| 124 | |
| 125 | /// Add a single path to record. |
| 126 | #[must_use] |