From f7de2feea17c4ee7188cc09d0a5f9f80a4410c33 Mon Sep 17 00:00:00 2001 From: SimonsMine <4030857+SimonsMine@users.noreply.github.com> Date: Mon, 5 Feb 2024 09:14:52 +0000 Subject: [PATCH] moved section, fixed typo --- tokio-console/README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/tokio-console/README.md b/tokio-console/README.md index 695fa303e..a4535e1af 100644 --- a/tokio-console/README.md +++ b/tokio-console/README.md @@ -97,12 +97,25 @@ tokio-console http://my.instrumented.application.local:6669 See [here][cli-ref] for a complete list of all command-line arguments. -Tokio Console has a numnber of different views: +Tokio Console has a number of different views: * [Tasks List](#tasks-list) * [Task Details](#task-details) * [Resources List](#resources-list) * [Resource Details](#resource-details) +#### running the console on windows + +The console uses the UTF-8 character set to display graphs and other visual +features in the terminal. In order to display this rich terminal UI on Windows, +it's necessary to use a UTF-8-enabled terminal emulator, such as the new +[Windows Terminal](https://learn.microsoft.com/en-us/windows/terminal/install). + +If you're using a terminal that supports UTF-8, make sure to explicitly call +tokio-console with the UTF-8 language flag set: +``` +tokio-console --lang en_US.UTF-8 +``` + ### Tasks List When the console CLI is launched, it displays a list of all [asynchronous tasks] @@ -214,19 +227,6 @@ behavior. See [the documentation][cfg-ref] for details. [cli-ref]: https://docs.rs/tokio-console/latest/tokio_console/config_reference/index.html#command-line-arguments [cfg-ref]: https://docs.rs/tokio-console/latest/tokio_console/config_reference/index.html#configuration-file -#### running the console on windows - -The console uses the UTF-8 character set to display graphs and other visual -features in the terminal. In order to display this rich terminal UI on Windows, -it's necessary to use a UTF-8-enabled terminal emulator, such as the new -[Windows Terminal](https://learn.microsoft.com/en-us/windows/terminal/install). - -If you're using a terminal that supports UTF-8, make sure to explicitly call -tokio-console with the UTF-8 language flag set: -``` -tokio-console --lang en_US.UTF-8 -``` - ## Getting Help First, see if the answer to your question can be found in the