Skip to content

Commit ff753eb

Browse files
authored
Merge pull request #366 from depate/euclidean_julia_edit
Euclidean julia edit
2 parents 508d9a3 + 68ce416 commit ff753eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contents/euclidean_algorithm/euclidean_algorithm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The algorithm is a simple way to find the *greatest common divisor* (GCD) of two
3636
{% sample lang="lua" %}
3737
[import:1-14, lang="lua"](code/lua/euclidean.lua)
3838
{% sample lang="jl" %}
39-
[import:1-10, lang="julia"](code/julia/euclidean.jl)
39+
[import:12-25, lang="julia"](code/julia/euclidean.jl)
4040
{% sample lang="nim" %}
4141
[import:13-24, lang="nim"](code/nim/euclid_algorithm.nim)
4242
{% endmethod %}
@@ -81,7 +81,7 @@ Modern implementations, though, often use the modulus operator (%) like so
8181
{% sample lang="lua" %}
8282
[import:16-25, lang="lua"](code/lua/euclidean.lua)
8383
{% sample lang="jl" %}
84-
[import:12-25, lang="julia"](code/julia/euclidean.jl)
84+
[import:1-10, lang="julia"](code/julia/euclidean.jl)
8585
{% sample lang="nim" %}
8686
[import:1-11, lang="nim"](code/nim/euclid_algorithm.nim)
8787
{% endmethod %}

0 commit comments

Comments
 (0)