This commit is contained in:
jzmaddock
2014-10-21 09:15:40 +01:00
parent a50c438d77
commit 406b2a9aa1
9 changed files with 14 additions and 14 deletions

View File

@ -87,7 +87,7 @@ from a html file, and print them out to cout:
char c;
while(is.get(c))
{
// use logarithmic growth stategy, in case
// use logarithmic growth strategy, in case
// in_avail (above) returned zero:
if(s.capacity() == s.size())
s.reserve(s.capacity() * 3);