Move old FastWriter stuff out of new Builder
diff --git a/doc/jsoncpp.dox b/doc/jsoncpp.dox
index 2c19664..2dcdbff 100644
--- a/doc/jsoncpp.dox
+++ b/doc/jsoncpp.dox
@@ -94,6 +94,9 @@
// If you like the defaults, you can insert directly into a stream.
std::cout << root;
+// If desired, remember to add a linefeed and flush.
+std::cout << std::endl;
+
// Of course, you can write to `std::ostringstream` if you prefer. Or
// use `writeString()` for convenience.
std::string document = Json::writeString( root, builder );