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 ```