From 3c677fd9362246effb35724d499e70effdf6dfed Mon Sep 17 00:00:00 2001
From: Raymond Toy <toy.raymond@gmail.com>
Date: Sun, 28 Sep 2014 14:16:38 -0700
Subject: [PATCH] Correct a comment for %ieee754-rem-pi/2.

---
 src/code/irrat.lisp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/code/irrat.lisp b/src/code/irrat.lisp
index daf6166ea..c07e9793e 100644
--- a/src/code/irrat.lisp
+++ b/src/code/irrat.lisp
@@ -183,10 +183,10 @@
     (%sqrt x))
   )
 
-;; Same as above, but instead of needing to pass an array in, the
-;; output array is broken up into two output values instead.  This is
-;; easier for the user, and we don't have to wrap calls with
-;; without-gcing.
+;; Slightly simplified interface to __ieee754_rem_pio2, but instead of
+;; needing to pass an array in, the output array is broken up into two
+;; output values instead.  This is easier for the user, and we don't
+;; have to wrap calls with without-gcing.
 (declaim (inline %ieee754-rem-pi/2))
 (export '%ieee754-rem-pi/2)
 (alien:def-alien-routine ("ieee754_rem_pio2" %ieee754-rem-pi/2) c-call:int
-- 
GitLab