Skip to content

Commit 31fb8e8

Browse files
committed
Accurately name task pool impls
1 parent 55d126c commit 31fb8e8

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

crates/bevy_tasks/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ mod task;
88
pub use task::Task;
99

1010
#[cfg(not(target_arch = "wasm32"))]
11-
mod task_pool;
11+
mod task_pool_non_wasm;
1212
#[cfg(not(target_arch = "wasm32"))]
13-
pub use task_pool::{Scope, TaskPool, TaskPoolBuilder};
13+
pub use task_pool_non_wasm::{Scope, TaskPool, TaskPoolBuilder};
1414

1515
#[cfg(target_arch = "wasm32")]
1616
mod single_threaded_task_pool;

0 commit comments

Comments
 (0)