Skip to content

Commit 2324d76

Browse files
committed
Fix overindented list items in two doc comments
1 parent 2e5bf86 commit 2324d76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/concurrent_files.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ impl<Config: 'static + Send + Sync> ConcurrentRunner<Config> {
165165
///
166166
/// * `num_jobs` - Number of jobs utilized to process files concurrently.
167167
/// * `proc_files` - Function that processes each file found during
168-
/// the search.
168+
/// the search.
169169
pub fn new<ProcFiles>(num_jobs: usize, proc_files: ProcFiles) -> Self
170170
where
171171
ProcFiles: 'static + Fn(PathBuf, &Config) -> std::io::Result<()> + Send + Sync,
@@ -204,7 +204,7 @@ impl<Config: 'static + Send + Sync> ConcurrentRunner<Config> {
204204
///
205205
/// * `config` - Information used to process a file.
206206
/// * `files_data` - Information about the files to be included or excluded
207-
/// from a search more the number of paths considered in the search.
207+
/// from a search more the number of paths considered in the search.
208208
pub fn run(
209209
self,
210210
config: Config,

0 commit comments

Comments
 (0)