Skip to content

Commit baa64a6

Browse files
authored
Fix capitalization
1 parent 1b93b55 commit baa64a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reading/recursion.livemd

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ You'll notice the **Process** memory consumption will increase, and eventually,
153153
You may need to click the **Connect** button to reconnect the Elixir runtime.
154154

155155
```elixir
156-
# defmodule Body Do
157-
# def recursion([head | tail]) Do
156+
# defmodule Body do
157+
# def recursion([head | tail]) do
158158
# recursion(tail ++ tail) ++ [head]
159159
# end
160160
# end

0 commit comments

Comments
 (0)