2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

Fix typos, after fixing bug in typochecker

This commit is contained in:
Brian Wignall
2019-12-25 22:42:26 -05:00
parent 9c80d1b23a
commit e3a45bd10b
43 changed files with 115 additions and 115 deletions

View File

@@ -83,7 +83,7 @@ bool check_complex(const std::complex<T>& a, const std::complex<T>& b, int max_e
}
if((boost::math::isnan)(a.imag()))
{
BOOST_ERROR("Found non-finite value for inaginary part: " << a);
BOOST_ERROR("Found non-finite value for imaginary part: " << a);
}
T rel = boost::math::fabs((b-a)/b) / eps;
@@ -258,7 +258,7 @@ void test_inverse_trig(T)
//
// check_spots:
// Various spot values, mostly the C99 special cases (infinites and NAN's).
// Various spot values, mostly the C99 special cases (infinities and NAN's).
// TODO: add spot checks for the Wolfram spot values.
//
template <class T>