Fix arity and link (#2123)

This commit is contained in:
Marcelo Henrique Neppel 2023-07-29 05:33:15 -03:00 committed by GitHub
parent b3f5805d78
commit 671828f211
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -514,7 +514,7 @@ end
The `Portal` modules defines a struct followed by a `shoot/1` function.
The function is just a wrapper around `Portal.Door.start_link/1`. Then
we define the `transfer/3` function, which loads the given data into the
left door and returns a Portal struct. Finally, `push_right/3` gets data
left door and returns a Portal struct. Finally, `push_right/1` gets data
from the door on the left and puts it on the right door. Let's give it a try:
```elixir
@ -795,9 +795,6 @@ To learn more about Elixir, we welcome you to explore our [website](http://elixi
[read our Getting Started guide](https://elixir-lang.org/getting-started/introduction.html),
and [many of the available learning resources](https://elixir-lang.org/learning.html).
You can also learn how to use some of Elixir and Livebook's unique features together
in the [Elixir and Livebook](/learn/notebooks/elixir-and-livebook) notebook.
Finally, huge thanks to Augie De Blieck Jr. for the drawings in this tutorial.
See you around!