From 6ad2f1de04cdc176456eedef8508b8b39709848b Mon Sep 17 00:00:00 2001 From: phaleth <29838606+phaleth@users.noreply.github.com> Date: Sun, 11 Aug 2024 17:05:10 +0200 Subject: [PATCH] Fix typo in pic chat messages reading --- reading/pic_chat_messages.livemd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reading/pic_chat_messages.livemd b/reading/pic_chat_messages.livemd index 78963d64..ae6d5bb9 100644 --- a/reading/pic_chat_messages.livemd +++ b/reading/pic_chat_messages.livemd @@ -242,7 +242,7 @@ When the LiveView first loads, it calls the `mount/3` function to assign a list Then, `handle_params/3` delegates to the `apply_action/3` function to assign more data to the socket depending on whether or not the live action is `:index`, `:edit`, or `:new`: -* The `page_title` is different for each page. It controllers the text displayed at the top of the browser tab. +* The `page_title` is different for each page. It controls the text displayed at the top of the browser tab. * The `:new` page creates a `Message` struct for the new message form. * The `:edit` page retrieves an existing `Message` based on the `"id"` url param. * `handle_info/3` receives a message from the form_component to insert a `Message` into the list of messages.