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

Fix spelling of "tripples".

This commit is contained in:
jzmaddock
2015-05-18 18:28:53 +01:00
parent e7b5c6a0be
commit 251e556e42
3 changed files with 5 additions and 5 deletions

View File

@@ -103,7 +103,7 @@ T nth_2deriv(T x)
T min = ldexp(static_cast<guess_type>(1.) / 2, exponent / N); // Minimum possible value is half our guess.
T max = ldexp(static_cast<guess_type>(2.), exponent / N); // Maximum possible value is twice our guess.
int digits = std::numeric_limits<T>::digits * 0.4; // Accuracy tripples with each step, so stop when
int digits = std::numeric_limits<T>::digits * 0.4; // Accuracy triples with each step, so stop when
// slightly more than one third of the digits are correct.
const boost::uintmax_t maxit = 20;
boost::uintmax_t it = maxit;