diff --git a/tokio-console/src/config.rs b/tokio-console/src/config.rs index b06de29e0..3c55f4286 100644 --- a/tokio-console/src/config.rs +++ b/tokio-console/src/config.rs @@ -64,6 +64,9 @@ pub struct Config { /// /// * `never-yielded` -- Warns when a task has never yielded. /// + /// * `auto-boxed-future` -- Warnings when the future driving a task was automatically boxed by + /// the runtime because it was large. + /// /// * `large-future` -- Warnings when the future driving a task occupies a large amount of /// stack space. #[clap(long = "warn", short = 'W', value_delimiter = ',', num_args = 1..)] @@ -83,6 +86,9 @@ pub struct Config { /// /// * `never-yielded` -- Warns when a task has never yielded. /// + /// * `auto-boxed-future` -- Warnings when the future driving a task was automatically boxed by + /// the runtime because it was large. + /// /// * `large-future` -- Warnings when the future driving a task occupies a large amount of /// stack space. ///