]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/math/distributions/fisher_f.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / boost / math / distributions / fisher_f.hpp
index 798db2fa75fac9f7c13c832610787926f0ff3f63..6a7b9d8391128030ca8e72f4367dad59db20a521 100644 (file)
@@ -178,7 +178,7 @@ inline RealType quantile(const fisher_f_distribution<RealType, Policy>& dist, co
       return error_result;
 
    // With optimizations turned on, gcc wrongly warns about y being used
-   // uninitializated unless we initialize it to something:
+   // uninitialized unless we initialize it to something:
    RealType x, y(0);
 
    x = boost::math::ibeta_inv(df1 / 2, df2 / 2, p, &y, Policy());
@@ -366,7 +366,7 @@ inline RealType kurtosis_excess(const fisher_f_distribution<RealType, Policy>& d
    if(df2 <= 8)
    {
       return policies::raise_domain_error<RealType>(
-         function, "Second degree of freedom was %1% but must be > 8 in order for the distribution to have a kutosis.", df2, Policy());
+         function, "Second degree of freedom was %1% but must be > 8 in order for the distribution to have a kurtosis.", df2, Policy());
    }
    RealType df2_2 = df2 * df2;
    RealType df1_2 = df1 * df1;