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:
gak 2022-09-13 04:36:50 +00:00
parent 9c08a5df76
commit d8d191fdd5

View file

@ -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,