diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2013-11-15 17:33:59 +0100 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2013-11-15 16:33:59 +0000 |
commit | 64e1ab11680d7fe72372d70add25ee519406d3d1 (patch) | |
tree | fb5c265ca6cbc7dc8bfdb3a994ed99c20cc046ce /libstdc++-v3/testsuite/util | |
parent | ff90a89e480d318bbb1a09fca1ea76c1a86e3ebb (diff) | |
download | gcc-64e1ab11680d7fe72372d70add25ee519406d3d1.zip gcc-64e1ab11680d7fe72372d70add25ee519406d3d1.tar.gz gcc-64e1ab11680d7fe72372d70add25ee519406d3d1.tar.bz2 |
build_hacking.xml: Fix documentation typos.
2013-11-15 Ondřej Bílka <neleai@seznam.cz>
Jonathan Wakely <jwakely.gcc@gmail.com>
* doc/xml/manual/build_hacking.xml: Fix documentation typos.
* doc/xml/manual/configure.xml: Likewise.
* include/bits/atomic_base.h: Fix typos in comments.
* include/bits/random.h: Likewise.
* include/ext/cast.h: Likewise.
* libsupc++/cxxabi.h: Likewise.
* testsuite/ext/pb_ds/example/hash_illegal_resize.cc: Likewise.
* testsuite/tr1/5_numerical_facilities/special_functions/testcase.h:
Likewise.
* testsuite/util/exception/safety.h: Likewise.
* testsuite/util/testsuite_containers.h: Likewise.
* testsuite/util/testsuite_hooks.cc: Likewise.
Co-Authored-By: Jonathan Wakely <jwakely.gcc@gmail.com>
From-SVN: r204850
Diffstat (limited to 'libstdc++-v3/testsuite/util')
-rw-r--r-- | libstdc++-v3/testsuite/util/exception/safety.h | 2 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/util/testsuite_containers.h | 4 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/util/testsuite_hooks.cc | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/libstdc++-v3/testsuite/util/exception/safety.h b/libstdc++-v3/testsuite/util/exception/safety.h index ca31179..eaefc93 100644 --- a/libstdc++-v3/testsuite/util/exception/safety.h +++ b/libstdc++-v3/testsuite/util/exception/safety.h @@ -1198,7 +1198,7 @@ namespace __gnu_test try { // An exception while assigning might leave the container empty - // making future attemps less relevant. So we copy it before to + // making future attempts less relevant. So we copy it before to // always assign to a non empty container. It also check for copy // constructor exception safety at the same time. _Tp __clone(__container); diff --git a/libstdc++-v3/testsuite/util/testsuite_containers.h b/libstdc++-v3/testsuite/util/testsuite_containers.h index 7e41d05..e8f7e2d 100644 --- a/libstdc++-v3/testsuite/util/testsuite_containers.h +++ b/libstdc++-v3/testsuite/util/testsuite_containers.h @@ -255,7 +255,7 @@ template<typename _Tp> void linkage_check_cxx98_cxx11_erase(_Tp& container) { - // Crashing when exteral reference and internal reference symbols are + // Crashing when external reference and internal reference symbols are // equivalently mangled but have different size return types in C++98 // and C++11 signatures. erase_external(container); // C++98 @@ -266,7 +266,7 @@ template<typename _Tp> void linkage_check_cxx98_cxx11_erase_iterators(_Tp& container) { - // Crashing when exteral reference and internal reference symbols are + // Crashing when external reference and internal reference symbols are // equivalently mangled but have different size return types in C++98 // and C++11 signatures. erase_external_iterators(container);// C++98 diff --git a/libstdc++-v3/testsuite/util/testsuite_hooks.cc b/libstdc++-v3/testsuite/util/testsuite_hooks.cc index 7f6a21e..20fedbc 100644 --- a/libstdc++-v3/testsuite/util/testsuite_hooks.cc +++ b/libstdc++-v3/testsuite/util/testsuite_hooks.cc @@ -237,7 +237,7 @@ namespace __gnu_test semaphore::semaphore() { #ifdef _GLIBCXX_SYSV_SEM - // Remeber the PID for the process that created the semaphore set + // Remember the PID for the process that created the semaphore set // so that only one process will destroy the set. pid_ = getpid(); |