aboutsummaryrefslogtreecommitdiff
path: root/lib/msun
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2022-09-10 10:59:10 +0000
committerGordon Bergling <gbe@FreeBSD.org>2022-09-10 10:59:10 +0000
commit82007616d0ff186793b3b464f2708d34baa15fb5 (patch)
tree0b91bcca6c09ffe50f7b48da88ea35dad2d0257a /lib/msun
parent8dcfb0282ddf28a16a29e56703009a839650e9c1 (diff)
downloadsrc-82007616d0ff186793b3b464f2708d34baa15fb5.tar.gz
src-82007616d0ff186793b3b464f2708d34baa15fb5.zip
msun: Remove a double word in a source code comment
- s/to to/to/ MFC after: 3 days
Diffstat (limited to 'lib/msun')
-rw-r--r--lib/msun/src/k_tanf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/src/k_tanf.c b/lib/msun/src/k_tanf.c
index 52f1aaaa0c6c..5be14458b80c 100644
--- a/lib/msun/src/k_tanf.c
+++ b/lib/msun/src/k_tanf.c
@@ -50,7 +50,7 @@ __kernel_tandf(double x, int iy)
* We add the small terms from lowest degree up for efficiency on
* non-sequential machines (the lowest degree terms tend to be ready
* earlier). Apart from this, we don't care about order of
- * operations, and don't need to to care since we have precision to
+ * operations, and don't need to care since we have precision to
* spare. However, the chosen splitting is good for accuracy too,
* and would give results as accurate as Horner's method if the
* small terms were added from highest degree down.