diff intfloat_readwrite.c @ 633:8c48a1b999a3 libavutil

spelling/grammar/consistency review part I
author diego
date Wed, 28 Jan 2009 00:16:05 +0000
parents d76a36742464
children 70bdd5501662
line wrap: on
line diff
--- a/intfloat_readwrite.c	Tue Jan 27 00:46:18 2009 +0000
+++ b/intfloat_readwrite.c	Wed Jan 28 00:16:05 2009 +0000
@@ -22,7 +22,7 @@
 
 /**
  * @file intfloat_readwrite.c
- * Portable IEEE float/double read/write functions.
+ * portable IEEE float/double read/write functions
  */
 
 #include "common.h"
@@ -51,7 +51,7 @@
         return 0.0/0.0;
     e -= 16383 + 63;        /* In IEEE 80 bits, the whole (i.e. 1.xxxx)
                              * mantissa bit is written as opposed to the
-                             * single and double precision formats */
+                             * single and double precision formats. */
     if (ext.exponent[0]&0x80)
         m= -m;
     return ldexp(m, e);