Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
taskdump: fix taskdump cargo config example (#6150)
The documentation for the `Handle::dump()` method includes a description of the Rust flags needed. However, the sample `.cargo/config.toml` file is incorrect. It gives the Rust flags as: ``` rustflags = ["--cfg tokio_unstable", "--cfg tokio_taskdump"] ``` However, each command line argument needs to be a separate element in the array: ``` rustflags = ["--cfg", "tokio_unstable", "--cfg", "tokio_taskdump"] ``` This change corrects that line.
- Loading branch information