From b678028ad19df4da94c376b13e32a8b9dd049ac8 Mon Sep 17 00:00:00 2001 From: grasshopper47 Date: Thu, 30 Nov 2023 21:53:24 +0100 Subject: [PATCH] Addendum print comment --- docs/docs/standard_library/logging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/standard_library/logging.md b/docs/docs/standard_library/logging.md index a13992b7f52..369aff4c76c 100644 --- a/docs/docs/standard_library/logging.md +++ b/docs/docs/standard_library/logging.md @@ -73,5 +73,5 @@ std::println(person); std::print(person); std::println("Hello world!"); // Prints with a newline at the end of the input -std::print("Hello world!"); // Prints the input and keeps cursor on the same +std::print("Hello world!"); // Prints the input and keeps cursor on the same line ```