👩💻 Join our community of thousands of amazing developers!
diff --git a/reference/cmath/comp_ellint_2.md b/reference/cmath/comp_ellint_2.md index 5cfcb4551..8768d2306 100644 --- a/reference/cmath/comp_ellint_2.md +++ b/reference/cmath/comp_ellint_2.md @@ -7,15 +7,34 @@ ```cpp namespace std { -float comp_ellint_2f(float k); -double comp_ellint_2(double k); -long double comp_ellint_2l(long double k); + double + comp_ellint_2(double k); // (1) C++17 + floating-point-type + comp_ellint_2(floating-point-type k); // (1) C++23 + + Pro...