Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in phoenix components section #1004

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/phoenix_drills.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions exercises/phoenix_follow_along_counter_app.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion reading/phoenix_1.7.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<!-- livebook:{"break_markdown":true} -->

Expand Down
2 changes: 1 addition & 1 deletion reading/phoenix_components.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -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.
belgoros marked this conversation as resolved.
Show resolved Hide resolved

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.

Expand Down