From 5bb4e829bbb5f154377d9f9d72e2a1e8944816d7 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Thu, 30 Nov 2023 09:27:43 +0100 Subject: [PATCH] docs: "Output stream formatting" chapter updated --- docs/users_guide/framework_basics/text_output.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/users_guide/framework_basics/text_output.md b/docs/users_guide/framework_basics/text_output.md index 39c2ee2e..d4ac39e4 100644 --- a/docs/users_guide/framework_basics/text_output.md +++ b/docs/users_guide/framework_basics/text_output.md @@ -81,7 +81,8 @@ associated with this quantity. ### Output stream formatting Only basic formatting can be applied for output streams. It includes control over width, fill, -and alignment: +and alignment of the entire quantity and formatting of a quantity numerical value according +to the general C++ rules: ```cpp std::cout << "|" << std::setw(10) << 123 * m << "|\n"; // | 123 m|