Skip to content

Commit

Permalink
Merge pull request #1049 from solar05/patch-1
Browse files Browse the repository at this point in the history
Fix capitalization
  • Loading branch information
BrooklinJazz committed Oct 12, 2023
2 parents 15f55ba + baa64a6 commit c01c18e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reading/recursion.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ You'll notice the **Process** memory consumption will increase, and eventually,
You may need to click the **Connect** button to reconnect the Elixir runtime.

```elixir
# defmodule Body Do
# def recursion([head | tail]) Do
# defmodule Body do
# def recursion([head | tail]) do
# recursion(tail ++ tail) ++ [head]
# end
# end
Expand Down

0 comments on commit c01c18e

Please sign in to comment.