Skip to content

Commit 1923ba5

Browse files
authored
Fix typos (#876)
1 parent d8ef511 commit 1923ba5

13 files changed

+13
-13
lines changed

include/boost/math/special_functions/detail/hypergeometric_1F1_recurrence.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@
313313
}
314314
if (ak - 1 == b)
315315
{
316-
// When ak - 1 == b are recursion coefficients dissappear to zero and
316+
// When ak - 1 == b are recursion coefficients disappear to zero and
317317
// we end up with a NaN result. Reduce the recursion steps by 1 to
318318
// avoid this. We rely on |b| small and therefore no infinite recursion.
319319
ak -= 1;

include/boost/math/special_functions/hypergeometric_1F1.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ namespace boost { namespace math { namespace detail {
114114
// At higher than double precision we need to be further away from the crossover location to
115115
// get full converge, but it's not clear how much further - indeed at quad precision it's
116116
// basically impossible to ever get forwards iteration to work. Backwards seems to work
117-
// OK as long as a > 1 whatever the precision tbough.
117+
// OK as long as a > 1 whatever the precision though.
118118
//
119119
int domain = hypergeometric_1F1_negative_b_recurrence_region(a, b, z);
120120
if ((domain < 0) && ((a > 1) || (boost::math::policies::digits<T, Policy>() <= 64)))

test/compile_test/interpolators_bezier_polynomial_incl_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//
1414
#include "test_compile_result.hpp"
1515
//
16-
// This test includes <vector> becasue many of the interpolators are not compatible with pointers/c-style arrays
16+
// This test includes <vector> because many of the interpolators are not compatible with pointers/c-style arrays
1717
//
1818
#include <vector>
1919

test/compile_test/interpolators_bilinear_uniform.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//
1414
#include "test_compile_result.hpp"
1515
//
16-
// This test includes <vector> becasue many of the interpolators are not compatible with pointers/c-style arrays
16+
// This test includes <vector> because many of the interpolators are not compatible with pointers/c-style arrays
1717
//
1818
#include <vector>
1919

test/compile_test/interpolators_cardinal_trig_incl_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//
1616
#include "test_compile_result.hpp"
1717
//
18-
// This test includes <vector> becasue many of the interpolators are not compatible with pointers/c-style arrays
18+
// This test includes <vector> because many of the interpolators are not compatible with pointers/c-style arrays
1919
//
2020
#include <vector>
2121

test/compile_test/interpolators_cubic_hermite_incl_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//
1414
#include "test_compile_result.hpp"
1515
//
16-
// This test includes <vector> becasue many of the interpolators are not compatible with pointers/c-style arrays
16+
// This test includes <vector> because many of the interpolators are not compatible with pointers/c-style arrays
1717
//
1818
#include <vector>
1919

test/compile_test/interpolators_makima_incl_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//
1414
#include "test_compile_result.hpp"
1515
//
16-
// This test includes <vector> becasue many of the interpolators are not compatible with pointers/c-style arrays
16+
// This test includes <vector> because many of the interpolators are not compatible with pointers/c-style arrays
1717
//
1818
#include <vector>
1919

test/compile_test/interpolators_pchip_incl_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//
1414
#include "test_compile_result.hpp"
1515
//
16-
// This test includes <vector> becasue many of the interpolators are not compatible with pointers/c-style arrays
16+
// This test includes <vector> because many of the interpolators are not compatible with pointers/c-style arrays
1717
//
1818
#include <vector>
1919

test/compile_test/interpolators_quintic_hermite_incl_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//
1414
#include "test_compile_result.hpp"
1515
//
16-
// This test includes <vector> becasue many of the interpolators are not compatible with pointers/c-style arrays
16+
// This test includes <vector> because many of the interpolators are not compatible with pointers/c-style arrays
1717
//
1818
#include <vector>
1919

test/compile_test/interpolators_septic_hermite_incl_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//
1414
#include "test_compile_result.hpp"
1515
//
16-
// This test includes <vector> becasue many of the interpolators are not compatible with pointers/c-style arrays
16+
// This test includes <vector> because many of the interpolators are not compatible with pointers/c-style arrays
1717
//
1818
#include <vector>
1919

0 commit comments

Comments
 (0)