Skip to content

Commit

Permalink
Fix capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
solar05 authored Sep 16, 2023
1 parent 1b93b55 commit baa64a6
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 baa64a6

Please sign in to comment.