Commit 4412e74de785d60484a3c79e620a9de635a5e40e

Werner Lemberg 2013-01-10T20:16:20

Minor comment improvements.

diff --git a/src/base/fttrigon.c b/src/base/fttrigon.c
index 73fd195..a7ad02d 100644
--- a/src/base/fttrigon.c
+++ b/src/base/fttrigon.c
@@ -19,13 +19,13 @@
   /*                                                                       */
   /* This is a fixed-point CORDIC implementation of trigonometric          */
   /* functions as well as transformations between Cartesian and polar      */
-  /* coordinates. The angles are represented as a 16.16 fixed-point value  */
-  /* in degrees, i.e., the angular resolution is 2^-16 degrees. Note that   */
+  /* coordinates.  The angles are represented as 16.16 fixed-point values  */
+  /* in degrees, i.e., the angular resolution is 2^-16 degrees.  Note that */
   /* only vectors longer than 2^16*180/pi (or at least 22 bits) on a       */
-  /* discrete Cartesian greed can have the same or better angular          */
-  /* resolution. Therefore, to maintain this precision, some functions     */
-  /* require the interim upscaling of the vectors, whereas others operate  */
-  /* with 24-bit long vectors from the start.                              */
+  /* discrete Cartesian grid can have the same or better angular           */
+  /* resolution.  Therefore, to maintain this precision, some functions    */
+  /* require an interim upscaling of the vectors, whereas others operate   */
+  /* with 24-bit long vectors directly.                                    */
   /*                                                                       */
   /*************************************************************************/