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

Fix more typos, via latest version of typochecker tool

This commit is contained in:
Brian Wignall
2019-12-20 10:41:42 -05:00
parent e504da1b44
commit df17d11299
98 changed files with 136 additions and 136 deletions

View File

@@ -236,7 +236,7 @@ T cbrt_noderiv(T x)
template <class T>
struct cbrt_functor_deriv
{ // Functor also returning 1st derviative.
{ // Functor also returning 1st derivative.
cbrt_functor_deriv(T const& to_find_root_of) : a(to_find_root_of)
{ // Constructor stores value a to find root of,
// for example: calling cbrt_functor_deriv<T>(x) to use to get cube root of x.