[libcxx] r190857 - Fix typo.
Joerg Sonnenberger
joerg at bec.de
Tue Sep 17 01:46:53 PDT 2013
Author: joerg
Date: Tue Sep 17 03:46:53 2013
New Revision: 190857
URL: http://llvm.org/viewvc/llvm-project?rev=190857&view=rev
Log:
Fix typo.
Modified:
libcxx/trunk/src/string.cpp
Modified: libcxx/trunk/src/string.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/src/string.cpp?rev=190857&r1=190856&r2=190857&view=diff
==============================================================================
--- libcxx/trunk/src/string.cpp (original)
+++ libcxx/trunk/src/string.cpp Tue Sep 17 03:46:53 2013
@@ -91,7 +91,7 @@ inline
int
as_integer(const string& func, const string& s, size_t* idx, int base )
{
- // Use long as no Stantard string to integer exists.
+ // Use long as no Standard string to integer exists.
long r = as_integer_helper<long>( func, s, idx, base, strtol );
if (r < numeric_limits<int>::min() || numeric_limits<int>::max() < r)
throw_from_string_out_of_range(func);
More information about the cfe-commits
mailing list