mirror of
https://github.com/bevyengine/bevy
synced 2025-02-16 14:08:32 +00:00
Fix a small doc typo: grater -> greater (#5970)
# Objective Fix a small typo in the docs: [DefaultTaskPoolOptions::max_total_threads](https://docs.rs/bevy/latest/bevy/core/struct.DefaultTaskPoolOptions.html#structfield.max_total_threads) ## Solution Change the spelling. 👍
This commit is contained in:
parent
9c08a5df76
commit
d8d191fdd5
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ pub struct DefaultTaskPoolOptions {
|
|||
/// If the number of physical cores is less than min_total_threads, force using
|
||||
/// min_total_threads
|
||||
pub min_total_threads: usize,
|
||||
/// If the number of physical cores is grater than max_total_threads, force using
|
||||
/// If the number of physical cores is greater than max_total_threads, force using
|
||||
/// max_total_threads
|
||||
pub max_total_threads: usize,
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue