[libcxx] r194432 - Patch from Bruce Mitchener; fixes two typos in comments. No functionality change. PR17843
Marshall Clow
mclow.lists at gmail.com
Mon Nov 11 15:27:19 PST 2013
Author: marshall
Date: Mon Nov 11 17:27:19 2013
New Revision: 194432
URL: http://llvm.org/viewvc/llvm-project?rev=194432&view=rev
Log:
Patch from Bruce Mitchener; fixes two typos in comments. No functionality change. PR17843
Modified:
libcxx/trunk/src/exception.cpp
libcxx/trunk/src/new.cpp
Modified: libcxx/trunk/src/exception.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/src/exception.cpp?rev=194432&r1=194431&r2=194432&view=diff
==============================================================================
--- libcxx/trunk/src/exception.cpp (original)
+++ libcxx/trunk/src/exception.cpp Mon Nov 11 17:27:19 2013
@@ -24,7 +24,7 @@
#ifndef _LIBCPPABI_VERSION
using namespace __cxxabiapple;
// On Darwin, there are two STL shared libraries and a lower level ABI
- // shared libray. The globals holding the current terminate handler and
+ // shared library. The globals holding the current terminate handler and
// current unexpected handler are in the ABI library.
#define __terminate_handler __cxxabiapple::__cxa_terminate_handler
#define __unexpected_handler __cxxabiapple::__cxa_unexpected_handler
Modified: libcxx/trunk/src/new.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/src/new.cpp?rev=194432&r1=194431&r2=194432&view=diff
==============================================================================
--- libcxx/trunk/src/new.cpp (original)
+++ libcxx/trunk/src/new.cpp Mon Nov 11 17:27:19 2013
@@ -22,7 +22,7 @@
#ifndef _LIBCPPABI_VERSION
// On Darwin, there are two STL shared libraries and a lower level ABI
- // shared libray. The global holding the current new handler is
+ // shared library. The global holding the current new handler is
// in the ABI library and named __cxa_new_handler.
#define __new_handler __cxxabiapple::__cxa_new_handler
#endif
More information about the cfe-commits
mailing list