]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/math/special_functions/hermite.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / boost / math / special_functions / hermite.hpp
index 1221f414dc64311ace13d462568648c665768211..dcc352f55f279bbe7fc92af67b6f3b5b88d225e2 100644 (file)
@@ -18,7 +18,7 @@
 namespace boost{
 namespace math{
 
-// Recurrance relation for Hermite polynomials:
+// Recurrence relation for Hermite polynomials:
 template <class T1, class T2, class T3>
 inline typename tools::promote_args<T1, T2, T3>::type 
    hermite_next(unsigned n, T1 x, T2 Hn, T3 Hnm1)
@@ -28,7 +28,7 @@ inline typename tools::promote_args<T1, T2, T3>::type
 
 namespace detail{
 
-// Implement Hermite polynomials via recurrance:
+// Implement Hermite polynomials via recurrence:
 template <class T>
 T hermite_imp(unsigned n, T x)
 {