From baa64a6b6ec0cb94ac1329cb340d30e8f562e0d1 Mon Sep 17 00:00:00 2001 From: Artem Solomatin Date: Sun, 17 Sep 2023 01:59:52 +0300 Subject: [PATCH] Fix capitalization --- reading/recursion.livemd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reading/recursion.livemd b/reading/recursion.livemd index bd713bf25..3670517bd 100644 --- a/reading/recursion.livemd +++ b/reading/recursion.livemd @@ -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