From 51ba6fbffb979e4d07b0246e3b652d87556cb150 Mon Sep 17 00:00:00 2001 From: 0xmohsinpathan <0xmohsinpathan@gmail.com> Date: Tue, 25 Jul 2023 12:33:15 +0530 Subject: [PATCH] Refactor: Use lowercase letter for variable in Computer Hardware section. * memory consumption --- reading/computer_hardware.livemd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reading/computer_hardware.livemd b/reading/computer_hardware.livemd index 4642161c8..5d2aa558f 100644 --- a/reading/computer_hardware.livemd +++ b/reading/computer_hardware.livemd @@ -167,7 +167,7 @@ Comment the line again and re-evaluate the cell and you'll notice that the memor goes down because the `list` is no longer in memory. ```elixir -# List = Enum.to_list(1..1000000) +# list = Enum.to_list(1..1000000) ``` ![](images/memory_consumption_filled_livebook_runtime.png)