@@ -463,7 +463,7 @@ implement!(
463463 /// [1]: https://crates.io/crates/ellip
464464 @second_kc inc_elliptic_bulirsch_3 -> el3( x, p) ,
465465
466- /// Compute the symmetric elliptic integral in Carlson's form of the first kind (RF).
466+ /// Compute the elliptic integral in Carlson's form of the first kind (RF).
467467 ///
468468 /// The implementation is based on [ellip][1] by Sira Pornsiriprasert.
469469 ///
@@ -480,17 +480,17 @@ implement!(
480480 /// let y = 0.5;
481481 /// let z = 0.25;
482482 ///
483- /// assert::close(x.elliptic_carlson_rf (y, z), 1.370171633266872, 1e-15)
483+ /// assert::close(x.elliptic_rf (y, z), 1.370171633266872, 1e-15)
484484 /// ```
485485 ///
486486 /// ## Panics
487487 ///
488488 /// The function panics if any of x, y, or z is negative, or more than one of them are zero.
489489 ///
490490 /// [1]: https://crates.io/crates/ellip
491- elliptic_carlson_rf -> elliprf( y, z) ,
491+ elliptic_rf -> elliprf( y, z) ,
492492
493- /// Compute the symmetric elliptic integral in Carlson's form of the second kind (RG).
493+ /// Compute the elliptic integral in Carlson's form of the second kind (RG).
494494 ///
495495 /// The implementation is based on [ellip][1] by Sira Pornsiriprasert.
496496 ///
@@ -507,17 +507,17 @@ implement!(
507507 /// let y = 0.5;
508508 /// let z = 0.25;
509509 ///
510- /// assert::close(x.elliptic_carlson_rg (y, z), 0.7526721491833781, 1e-15)
510+ /// assert::close(x.elliptic_rg (y, z), 0.7526721491833781, 1e-15)
511511 /// ```
512512 ///
513513 /// ## Panics
514514 ///
515515 /// The function panics if any of x, y, or z is negative or infinite.
516516 ///
517517 /// [1]: https://crates.io/crates/ellip
518- elliptic_carlson_rg -> elliprg( y, z) ,
518+ elliptic_rg -> elliprg( y, z) ,
519519
520- /// Compute the symmetric elliptic integral in Carlson's form of the third kind (RJ).
520+ /// Compute the elliptic integral in Carlson's form of the third kind (RJ).
521521 ///
522522 /// The implementation is based on [ellip][1] by Sira Pornsiriprasert.
523523 ///
@@ -536,17 +536,17 @@ implement!(
536536 /// let z = 0.25;
537537 /// let p = 0.125;
538538 ///
539- /// assert::close(x.elliptic_carlson_rj (y, z, p), 5.680557292035963, 1e-15)
539+ /// assert::close(x.elliptic_rj (y, z, p), 5.680557292035963, 1e-15)
540540 /// ```
541541 ///
542542 /// ## Panics
543543 ///
544544 /// The function panics if p = 0, any of x, y, or z is negative, or more than one of them are zero.
545545 ///
546546 /// [1]: https://crates.io/crates/ellip
547- @first_m elliptic_carlson_rj -> elliprj( y, z, p) ,
547+ @first_m elliptic_rj -> elliprj( y, z, p) ,
548548
549- /// Compute the degenerate symmetric elliptic integral in Carlson's form (RC).
549+ /// Compute the degenerate elliptic integral in Carlson's form (RC).
550550 ///
551551 /// The implementation is based on [ellip][1] by Sira Pornsiriprasert.
552552 ///
@@ -562,17 +562,17 @@ implement!(
562562 /// let x = 1.0;
563563 /// let y = 0.5;
564564 ///
565- /// assert::close(x.elliptic_carlson_rc (y), 1.2464504802804608, 1e-15)
565+ /// assert::close(x.elliptic_rc (y), 1.2464504802804608, 1e-15)
566566 /// ```
567567 ///
568568 /// ## Panics
569569 ///
570570 /// The function panics if x < 0, y = 0, or y < 0.
571571 ///
572572 /// [1]: https://crates.io/crates/ellip
573- @first_m elliptic_carlson_rc -> elliprc( y) ,
573+ @first_m elliptic_rc -> elliprc( y) ,
574574
575- /// Compute the symmetric elliptic integral in Carlson's form of the second kind (RD).
575+ /// Compute the elliptic integral in Carlson's form of the second kind (RD).
576576 ///
577577 /// The implementation is based on [ellip][1] by Sira Pornsiriprasert.
578578 ///
@@ -589,15 +589,15 @@ implement!(
589589 /// let y = 0.5;
590590 /// let z = 0.25;
591591 ///
592- /// assert::close(x.elliptic_carlson_rd (y, z), 4.022594757168912, 1e-15)
592+ /// assert::close(x.elliptic_rd (y, z), 4.022594757168912, 1e-15)
593593 /// ```
594594 ///
595595 /// ## Panics
596596 ///
597597 /// The function panics if x < 0, y < 0, z ≤ 0, or when both x and y are zero.
598598 ///
599599 /// [1]: https://crates.io/crates/ellip
600- @first_m elliptic_carlson_rd -> elliprd( y, z) ,
600+ @first_m elliptic_rd -> elliprd( y, z) ,
601601
602602 /// Compute Jacobi's zeta function.
603603 ///
0 commit comments