summaryrefslogtreecommitdiff
path: root/src/tan.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2013-07-24 12:25:26 +0000
committerzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2013-07-24 12:25:26 +0000
commit22dad8c9d6bde43cba07f5564b1329bd778f47f5 (patch)
tree2872f98701edac2fffa3f62b1e4faff198d6da76 /src/tan.c
parent5b46f2286cb5351808925572c5adec5541628d72 (diff)
downloadmpc-22dad8c9d6bde43cba07f5564b1329bd778f47f5.tar.gz
fixed typos reported by Ondřej Bílka <neleai@seznam.cz>
(cf http://lists.gforge.inria.fr/pipermail/mpc-discuss/2013-July/001241.html) git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@1298 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'src/tan.c')
-rw-r--r--src/tan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tan.c b/src/tan.c
index 0764db8..ce73621 100644
--- a/src/tan.c
+++ b/src/tan.c
@@ -237,7 +237,7 @@ mpc_tan (mpc_ptr rop, mpc_srcptr op, mpc_rnd_t rnd)
inex = mpc_div (x, x, y, MPC_RNDZZ);
/* OP is no pure real nor pure imaginary, so in theory the real and
imaginary parts of its tangent cannot be null. However due to
- rouding errors this might happen. Consider for example
+ rounding errors this might happen. Consider for example
tan(1+14*I) = 1.26e-10 + 1.00*I. For small precision sin(op) and
cos(op) differ only by a factor I, thus after mpc_div x = I and
its real part is zero. */