From bd64f140d4ebac5324a03d75c6d5d9b114dafc6b Mon Sep 17 00:00:00 2001 From: Joerg Sonnenberger Date: Tue, 17 Sep 2013 08:46:53 +0000 Subject: [PATCH] Fix typo. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@190857 91177308-0d34-0410-b5e6-96231b3b80d8 --- src/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/string.cpp b/src/string.cpp index a6685839..fde52129 100644 --- a/src/string.cpp +++ b/src/string.cpp @@ -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( func, s, idx, base, strtol ); if (r < numeric_limits::min() || numeric_limits::max() < r) throw_from_string_out_of_range(func);