summaryrefslogtreecommitdiff
path: root/src/sin.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2016-12-12 17:53:57 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2016-12-12 17:53:57 +0000
commitd77460280f3b9046b59f294ceb15bd9bc4a189dc (patch)
treede5cc121f76aaf1e2efbc6a23cbbdadf0da7d958 /src/sin.c
parente6e2460a39499b71d6d39692dbfc12cbe12e83c7 (diff)
downloadmpfr-d77460280f3b9046b59f294ceb15bd9bc4a189dc.tar.gz
[src/sin.c] Added missing word in r11032 comment.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@11033 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'src/sin.c')
-rw-r--r--src/sin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sin.c b/src/sin.c
index 9ef30c275..d233d5c13 100644
--- a/src/sin.c
+++ b/src/sin.c
@@ -87,8 +87,8 @@ mpfr_sin (mpfr_ptr y, mpfr_srcptr x, mpfr_rnd_t rnd_mode)
/* since we compute sin(x) as sqrt(1-cos(x)^2), and for x small we have
cos(x)^2 ~ 1 - x^2, when subtracting cos(x)^2 from 1 we will lose
about -2*expx bits if expx < 0 */
- /* FIXME: In the following operation, the can be around 2*precy, thus
- an integer overflow is possible. */
+ /* FIXME: In the following operation, the result can be around 2*precy,
+ thus an integer overflow is possible. */
if (expx < 0)
m += err1;