Skip to content

Commit 5ac602a

Browse files
committed
Fixed indentation problem
1 parent db00304 commit 5ac602a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contents/euclidean_algorithm/code/clisp/euclidean.lisp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
(if (eq a b)
1010
a
1111
(if (> a b)
12-
(euclid-sub* (- a b) b)
13-
(euclid-sub* a (- b a)))))
12+
(euclid-sub* (- a b) b)
13+
(euclid-sub* a (- b a)))))
1414

1515
(defun euclid-mod (a b)
1616
"Finds the greatest common divisor for any two integers"

0 commit comments

Comments
 (0)