From d8d191fdd5df0a0b3e291b53d0cd15cae8f664cb Mon Sep 17 00:00:00 2001 From: gak Date: Tue, 13 Sep 2022 04:36:50 +0000 Subject: [PATCH] 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. :+1: --- crates/bevy_core/src/task_pool_options.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_core/src/task_pool_options.rs b/crates/bevy_core/src/task_pool_options.rs index d4ab934407..af910b1138 100644 --- a/crates/bevy_core/src/task_pool_options.rs +++ b/crates/bevy_core/src/task_pool_options.rs @@ -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,