Skip to content

Commit a1307bc

Browse files
committed
fix indentation
1 parent 7ae5a39 commit a1307bc

File tree

1 file changed

+1
-1
lines changed
  • chapters/fundamental_algorithms/euclidean_algorithm

1 file changed

+1
-1
lines changed

chapters/fundamental_algorithms/euclidean_algorithm/euclidean.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ let euclid_sub a b =
368368
else if a < b then
369369
inner a (b - a)
370370
else
371-
inner (a - b) b
371+
inner (a - b) b
372372
in (inner (abs a) (abs b))
373373
374374
let chk1 = euclid_mod (64 * 67) (64 * 81)

0 commit comments

Comments
 (0)