(mut self, paths: Vec<impl Into<String>>)
| 110 | /// Other modified files will be ignored. |
| 111 | #[must_use] |
| 112 | pub fn paths(mut self, paths: Vec<impl Into<String>>) -> Self { |
| 113 | self.paths = paths.into_iter().map(Into::into).collect(); |
| 114 | self |
| 115 | } |
| 116 | |
| 117 | /// Add a single path to record. |
| 118 | #[must_use] |