1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-03 13:20:26 +02:00

* boot-9.scm (sqrt): minor indentation fix.

This commit is contained in:
Rob Browning 2002-09-15 01:19:17 +00:00
parent a0760d6173
commit 0ac6420c88

View file

@ -680,7 +680,7 @@
(define (sqrt z)
(if (real? z)
(if (negative? z) (make-rectangular 0 ($sqrt (- z)))
($sqrt z))
($sqrt z))
(make-polar ($sqrt (magnitude z)) (/ (angle z) 2))))
(define expt