diff options
| author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-01-31 18:44:55 +0000 |
|---|---|---|
| committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-01-31 18:44:55 +0000 |
| commit | 9fc1117c6f2166ae003c5a5e6a4c69011a589c22 (patch) | |
| tree | 750d0095b672dd8290ee9e0d133642487027329b /libstdc++-v3/include/std/complex | |
| parent | c75a5ac50bc1e46eaa495871b02aef95b79d206a (diff) | |
| download | ppe42-gcc-9fc1117c6f2166ae003c5a5e6a4c69011a589c22.tar.gz ppe42-gcc-9fc1117c6f2166ae003c5a5e6a4c69011a589c22.zip | |
2008-01-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* include/backward/auto_ptr.h: Fix comment typos.
* include/bits/algorithmfwd.h: Likewise.
* include/bits/basic_ios.h: Likewise.
* include/bits/c++config: Likewise.
* include/bits/char_traits.h: Likewise.
* include/bits/codecvt.h: Likewise.
* include/bits/gslice.h: Likewise.
* include/bits/ios_base.h: Likewise.
* include/bits/locale_facets.h: Likewise.
* include/bits/locale_facets_nonio.tcc: Likewise.
* include/bits/postypes.h: Likewise.
* include/bits/sstream.tcc: Likewise.
* include/bits/stl_algo.h: Likewise.
* include/bits/stl_deque.h: Likewise.
* include/bits/stl_iterator.h: Likewise.
* include/bits/stl_iterator_base_types.h Likewise.
* include/bits/stl_list.h: Likewise.
* include/bits/stl_map.h: Likewise.
* include/bits/stl_multimap.h: Likewise.
* include/bits/stl_multiset.h: Likewise.
* include/bits/stl_set.h: Likewise.
* include/bits/stl_vector.h: Likewise.
* include/bits/valarray_array.h: Likewise.
* include/debug/safe_base.h: Likewise.
* include/ext/bitmap_allocator.h: Likewise.
* include/ext/codecvt_specializations.h Likewise.
* include/ext/mt_allocator.h: Likewise.
* include/ext/rc_string_base.h: Likewise.
* include/ext/rope: Likewise.
* include/parallel/checkers.h: Likewise.
* include/parallel/find.h: Likewise.
* include/parallel/multiseq_selection.h: Likewise.
* include/parallel/partition.h: Likewise.
* include/parallel/settings.h: Likewise.
* include/std/bitset: Likewise.
* include/std/complex: Likewise.
* include/std/fstream: Likewise.
* include/std/istream: Likewise.
* include/std/limits: Likewise.
* include/std/ostream: Likewise.
* include/std/stdexcept: Likewise.
* include/std/streambuf: Likewise.
* include/tr1/bessel_function.tcc: Likewise.
* include/tr1/cmath: Likewise.
* include/tr1/ell_integral.tcc: Likewise.
* include/tr1/hypergeometric.tcc: Likewise.
* include/tr1/legendre_function.tcc: Likewise.
* include/tr1_impl/random: Likewise.
* include/tr1_impl/regex: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@131982 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/std/complex')
| -rw-r--r-- | libstdc++-v3/include/std/complex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libstdc++-v3/include/std/complex b/libstdc++-v3/include/std/complex index 105da21a23f..f2d9e9346ee 100644 --- a/libstdc++-v3/include/std/complex +++ b/libstdc++-v3/include/std/complex @@ -610,7 +610,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) arg(const complex<_Tp>& __z) { return __complex_arg(__z); } #endif - // 26.2.7/5: norm(__z) returns the squared magintude of __z. + // 26.2.7/5: norm(__z) returns the squared magnitude of __z. // As defined, norm() is -not- a norm is the common mathematical // sens used in numerics. The helper class _Norm_helper<> tries to // distinguish between builtin floating point and the rest, so as @@ -744,7 +744,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) exp(const complex<_Tp>& __z) { return __complex_exp(__z); } #endif - // 26.2.8/5 log(__z): Reurns the natural complex logaritm of __z. + // 26.2.8/5 log(__z): Returns the natural complex logarithm of __z. // The branch cut is along the negative axis. template<typename _Tp> inline complex<_Tp> @@ -1024,7 +1024,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) complex<float>& operator*=(float); complex<float>& operator/=(float); - // Let's the compiler synthetize the copy and assignment + // Let the compiler synthesize the copy and assignment // operator. It always does a pretty good job. // complex& operator= (const complex&); template<typename _Tp> @@ -1178,7 +1178,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) complex<double>& operator*=(double); complex<double>& operator/=(double); - // The compiler will synthetize this, efficiently. + // The compiler will synthesize this, efficiently. // complex& operator= (const complex&); template<typename _Tp> complex<double>& operator=(const complex<_Tp>&); |

