Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/m68k/fpe Fix typo in comment.



details:   https://anonhg.NetBSD.org/src/rev/798a314564d4
branches:  trunk
changeset: 786215:798a314564d4
user:      isaki <isaki%NetBSD.org@localhost>
date:      Sat Apr 20 04:55:44 2013 +0000

description:
Fix typo in comment.

diffstat:

 sys/arch/m68k/fpe/fpu_hyperb.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (29 lines):

diff -r cf076c661a66 -r 798a314564d4 sys/arch/m68k/fpe/fpu_hyperb.c
--- a/sys/arch/m68k/fpe/fpu_hyperb.c    Sat Apr 20 04:54:22 2013 +0000
+++ b/sys/arch/m68k/fpe/fpu_hyperb.c    Sat Apr 20 04:55:44 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fpu_hyperb.c,v 1.12 2013/04/20 04:54:22 isaki Exp $    */
+/*     $NetBSD: fpu_hyperb.c,v 1.13 2013/04/20 04:55:44 isaki Exp $    */
 
 /*
  * Copyright (c) 1995  Ken Nakata
@@ -57,7 +57,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fpu_hyperb.c,v 1.12 2013/04/20 04:54:22 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fpu_hyperb.c,v 1.13 2013/04/20 04:55:44 isaki Exp $");
 
 #include <machine/ieee.h>
 
@@ -172,8 +172,8 @@
                CPYFPN(&fe->fe_f1, r);
 
                /*
-                * for sin(),  s1 := s0 * x^2 / (2n+1)2n
-                * for cos(),  s1 := s0 * x^2 / 2n(2n-1)
+                * for sinh(),  s1 := s0 * x^2 / (2n+1)2n
+                * for cosh(),  s1 := s0 * x^2 / 2n(2n-1)
                 */
                k = f * (f + 1);
                fpu_explode(fe, &fe->fe_f2, FTYPE_LNG, &k);



Home | Main Index | Thread Index | Old Index