From c630f84690ad8f1864c95f50d962f02427cd5c06 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 28 Jul 2023 17:09:18 +0200 Subject: [PATCH] doc: README.md changed `text` to `console` Signed-off-by: Harald Hoyer --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6f57ae8..3a46567 100644 --- a/README.md +++ b/README.md @@ -95,12 +95,12 @@ Debug information is worth it! `chainerror` supports multiple output formats, which can be selected with the different format specifiers: * `{}`: Display -```text +```console func1 error calling func2 ``` * `{:#}`: Alternative Display -```text +```console func1 error calling func2 Caused by: func2 error: calling func3 @@ -113,7 +113,7 @@ Caused by: ``` * `{:?}`: Debug -```text +```console examples/example.rs:50:13: func1 error calling func2 Caused by: examples/example.rs:25:13: Func2Error(func2 error: calling func3) @@ -127,7 +127,7 @@ Kind(NotFound) ``` * `{:#?}`: Alternative Debug -```text +```console Error { occurrence: Some( "examples/example.rs:50:13",