Skip to content

Commit 70822e9

Browse files
Update contents/cooley_tukey/code/clisp/fft.lisp
Co-authored-by: Trashtalk217 <trashtalk217@gmail.com>
1 parent c72caaf commit 70822e9

File tree

1 file changed

+1
-1
lines changed
  • contents/cooley_tukey/code/clisp

1 file changed

+1
-1
lines changed

contents/cooley_tukey/code/clisp/fft.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"Reverses the bits of a value"
4646
(if (= num-bits 1)
4747
value
48-
;; Split bits into two parts
48+
;; Split bits into two parts.
4949
(let* ((num-low-bits (floor (/ num-bits 2)))
5050
(num-high-bits (- num-bits num-low-bits))
5151
(bit-mask (- (expt 2 num-low-bits) 1))

0 commit comments

Comments
 (0)