Skip to content

Commit 167411a

Browse files
committed
Worker pool for current thread runtimes
Signed-off-by: Nicholas Gates <[email protected]>
1 parent 0c279a0 commit 167411a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vortex-io/src/runtime/pool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ impl CurrentThreadWorkerPool {
2323
}
2424
}
2525

26-
/// Set the numer of worker threads to the available system parallelism as reported by
26+
/// Set the number of worker threads to the available system parallelism as reported by
2727
/// `std::thread::available_parallelism()` minus 1, to leave a slot open for the calling thread.
2828
pub fn set_workers_to_available_parallelism(&self) {
2929
let n = std::thread::available_parallelism()

0 commit comments

Comments
 (0)