You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by fa...@apache.org on 2012/01/18 20:05:05 UTC

svn commit: r1233001 - /stdcxx/trunk/doc/stdlibref/basic-string.html

Author: faridz
Date: Wed Jan 18 19:05:05 2012
New Revision: 1233001

URL: http://svn.apache.org/viewvc?rev=1233001&view=rev
Log:
2012-01-18  Farid Zaripov  <fa...@apache.org>

	STDCXX-1047
	* stdlibref/basic-string.html: corrected typos and formatting.

Modified:
    stdcxx/trunk/doc/stdlibref/basic-string.html

Modified: stdcxx/trunk/doc/stdlibref/basic-string.html
URL: http://svn.apache.org/viewvc/stdcxx/trunk/doc/stdlibref/basic-string.html?rev=1233001&r1=1233000&r2=1233001&view=diff
==============================================================================
--- stdcxx/trunk/doc/stdlibref/basic-string.html (original)
+++ stdcxx/trunk/doc/stdlibref/basic-string.html Wed Jan 18 19:05:05 2012
@@ -435,7 +435,7 @@ namespace std {
   basic_ostream&lt;charT, traits&gt;&amp; operator&lt;&lt;(ostream&amp;, 
                                            const basic_string&amp;);
 
-  template &lt;class Stream, class charT,class traits, class Allocator&gt;
+  template &lt;class Stream, class charT, class traits, class Allocator&gt;
   basic_istream&lt;charT, traits&gt;&amp; 
   getline(Stream&amp;, basic_string&amp;, charT);
 }
@@ -1337,7 +1337,7 @@ basic_ostream&lt;charT, traits&gt;&amp;
 <A NAME="idx390"></A><PRE>
 template &lt;class Stream, class charT, class traits, class Allocator&gt;
 basic_istream&lt;charT, traits&gt;&amp;
-<B>getline</B>(basic_istream&lt;charT, traits&gt; is, 
+<B>getline</B>(basic_istream&lt;charT, traits&gt;&amp; is, 
          basic_string&lt;charT, traits allocator&gt; &amp;str, charT delim);</PRE>
 <UL>
 <P>An unformatted input function that extracts characters from <SAMP>is</SAMP> into <SAMP>str</SAMP> until <SAMP>npos - 1</SAMP> characters are read, the end of the input sequence is reached, or the character read is <SAMP>delim</SAMP>.  </P>