From c1cf9818236c3e864a6c1313b70e262106b9a184 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Mon, 11 Nov 2013 23:27:19 +0000 Subject: [PATCH] Patch from Bruce Mitchener; fixes two typos in comments. No functionality change. PR17843 llvm-svn: 194432 --- libcxx/src/exception.cpp | 2 +- libcxx/src/new.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libcxx/src/exception.cpp b/libcxx/src/exception.cpp index 9dbb1fae7904..572d9779138d 100644 --- a/libcxx/src/exception.cpp +++ b/libcxx/src/exception.cpp @@ -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 diff --git a/libcxx/src/new.cpp b/libcxx/src/new.cpp index fa0331a8b711..f4998cfb2a47 100644 --- a/libcxx/src/new.cpp +++ b/libcxx/src/new.cpp @@ -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