Skip to content

Commit 33b8752

Browse files
authored
Fix typo (#266)
1 parent d5c4371 commit 33b8752

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lectures/more_julia/generic_programming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Using the `subtypes` function, we can write an algorithm to traverse the type tr
107107

108108
```{code-cell} julia
109109
# from https://github.com/JuliaLang/julia/issues/24741
110-
function subtypetree(t; level = 1, indent = 4)
110+
function subtypetree(t, level = 1, indent = 4)
111111
if level == 1
112112
println(t)
113113
end

0 commit comments

Comments
 (0)