From 2c362c097ece94d727bd869bf69849261f029627 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 30 Jan 2009 05:21:13 -0400 Subject: [PATCH] Fixed a comment. --- src/stream.h | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/stream.h b/src/stream.h index 3c8364b0..0f5aecb0 100644 --- a/src/stream.h +++ b/src/stream.h @@ -76,17 +76,20 @@ public: /** * Construct a new output_stream_t. - * - * @param output_file File to which to send output. If both this - * and pager are set, output_file takes priority. - * - * @param pager Path to a pager. To not use a pager, leave this - * empty. */ output_stream_t() : pipe_to_pager_fd(-1), os(NULL) { TRACE_CTOR(output_stream_t, ""); } + /** + * Initialize the output stream object. + * + * @param output_file File to which to send output. If both this + * and pager are set, output_file takes priority. + * + * @param pager_path Path to a pager. To not use a pager, leave this + * empty. + */ void initialize(const optional& output_file = none, const optional& pager_path = none);