From dd02f2278a16ab0dfbb873757dffd031c71c8f3a Mon Sep 17 00:00:00 2001 From: Warren Weckesser Date: Fri, 24 Jan 2025 21:09:28 -0500 Subject: [PATCH] DOC: Fix a typo in the example test driver program in special_tut.qbk. --- doc/background/special_tut.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/background/special_tut.qbk b/doc/background/special_tut.qbk index 9a45824f6..9c311e01b 100644 --- a/doc/background/special_tut.qbk +++ b/doc/background/special_tut.qbk @@ -373,7 +373,7 @@ Now we just need to write the test driver program, at it's most basic it looks s std::cout << "The long double tests have been disabled on this platform " "either because the long double overloads of the usual math functions are " "not available at all, or because they are too inaccurate for these tests " - "to pass." << std::cout; + "to pass." << std::endl; #endif }