Module Name:    src
Committed By:   isaki
Date:           Sat Apr 20 04:55:44 UTC 2013

Modified Files:
        src/sys/arch/m68k/fpe: fpu_hyperb.c

Log Message:
Fix typo in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/m68k/fpe/fpu_hyperb.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/m68k/fpe/fpu_hyperb.c
diff -u src/sys/arch/m68k/fpe/fpu_hyperb.c:1.12 src/sys/arch/m68k/fpe/fpu_hyperb.c:1.13
--- src/sys/arch/m68k/fpe/fpu_hyperb.c:1.12	Sat Apr 20 04:54:22 2013
+++ src/sys/arch/m68k/fpe/fpu_hyperb.c	Sat Apr 20 04:55:44 2013
@@ -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 @@ __fpu_sinhcosh_taylor(struct fpemu *fe, 
 		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);

Reply via email to