diff --git a/exercises/phoenix_drills.livemd b/exercises/phoenix_drills.livemd index 65bc0f4c9..66c3449cf 100644 --- a/exercises/phoenix_drills.livemd +++ b/exercises/phoenix_drills.livemd @@ -54,7 +54,7 @@ $ mix phx.new random_number --no-ecto ## Phoenix Navigation -Create a Pheonix application with three pages: +Create a Phoenix application with three pages: * Home * About diff --git a/exercises/phoenix_follow_along_counter_app.livemd b/exercises/phoenix_follow_along_counter_app.livemd index 86ade5b12..5c4a07408 100644 --- a/exercises/phoenix_follow_along_counter_app.livemd +++ b/exercises/phoenix_follow_along_counter_app.livemd @@ -264,9 +264,9 @@ end For more on Phoenix, consider the following resources. -* [Phoenix HexDocs](https://hexdocs.pm/phoenix/Phoenix.html) -* [Plug HexDocs](https://hexdocs.pm/plug/readme.html) -* [Phoenix a Web Framework for the New Web • José Valim • GOTO 2016](https://www.youtube.com/watch?v=bk3icU8iIto&ab_channel=GOTOConferences) +- [Phoenix HexDocs](https://hexdocs.pm/phoenix/Phoenix.html) +- [Plug HexDocs](https://hexdocs.pm/plug/readme.html) +- [Phoenix a Web Framework for the New Web • José Valim • GOTO 2016](https://www.youtube.com/watch?v=bk3icU8iIto&ab_channel=GOTOConferences) ## Commit Your Progress diff --git a/reading/phoenix_1.7.livemd b/reading/phoenix_1.7.livemd index a18c618dd..3cbf6fcf7 100644 --- a/reading/phoenix_1.7.livemd +++ b/reading/phoenix_1.7.livemd @@ -50,7 +50,7 @@ Phoenix 1.7 also introduced [Verified Routes](https://hexdocs.pm/phoenix/1.7.0-r ~p"/home" ``` -Many projects in the Elixir ecosystem will still use Pheonix 1.6 or older. While this course focuses on Phoenix 1.7, consider reading the previous [Phoenix 1.6](./deprecated_phoenix_1.6.livemd) section to learn more about the older version. +Many projects in the Elixir ecosystem will still use Phoenix 1.6 or older. While this course focuses on Phoenix 1.7, consider reading the previous [Phoenix 1.6](./deprecated_phoenix_1.6.livemd) section to learn more about the older version. diff --git a/reading/phoenix_components.livemd b/reading/phoenix_components.livemd index 26b708793..59f122bda 100644 --- a/reading/phoenix_components.livemd +++ b/reading/phoenix_components.livemd @@ -268,7 +268,7 @@ Here's an example of a form without a changeset that sends a GET request to the ### Internal Components -[Pheonix.Component](https://hexdocs.pm/phoenix_live_view/Phoenix.Component.html) also defines several internal components. +[Phoenix.Component](https://hexdocs.pm/phoenix_live_view/Phoenix.Component.html) also defines several internal components. For example, the `simple_form/1` component in `core_components.ex` relies on the [form/1](https://hexdocs.pm/phoenix_live_view/Phoenix.Component.html#form/1) component.