summaryrefslogtreecommitdiff
path: root/src/atanh.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2013-07-22 02:20:41 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2013-07-22 02:20:41 +0000
commit061a6d3cc5d115d8e01aeffe02d390a77d77787e (patch)
tree468ad0467b107602a17a5fac3de8f8cfacc92992 /src/atanh.c
parent94538dd4c7b985299a35a1599ac0f1e659c7606b (diff)
downloadmpfr-061a6d3cc5d115d8e01aeffe02d390a77d77787e.tar.gz
Applied patch 3 by Ondřej Bílka with some manual corrections,
fixing typos: https://sympa.inria.fr/sympa/arc/mpfr/2013-07/msg00016.html git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@8621 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'src/atanh.c')
-rw-r--r--src/atanh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/atanh.c b/src/atanh.c
index 62357ac2f..ca86387ee 100644
--- a/src/atanh.c
+++ b/src/atanh.c
@@ -88,7 +88,7 @@ mpfr_atanh (mpfr_ptr y, mpfr_srcptr xt , mpfr_rnd_t rnd_mode)
/* the optimal number of bits : see algorithms.ps */
Nt = Nt + MPFR_INT_CEIL_LOG2 (Nt) + 4;
- /* initialise of intermediary variable */
+ /* initialize of intermediary variable */
mpfr_init2 (t, Nt);
mpfr_init2 (te, Nt);