diff --git a/getting-started/processes.markdown b/getting-started/processes.markdown index 9ebe85d38..1c2ed7276 100644 --- a/getting-started/processes.markdown +++ b/getting-started/processes.markdown @@ -234,7 +234,7 @@ iex> flush :ok ``` -Using processes around state and name registering are very common patterns in Elixir applications. However, most of the time, we won't implement those patterns manually as above, but by using one of the many abstractions that ships with Elixir. For example, Elixir provides [agents](/docs/stable/elixir/Agent.html), which are simple abstractions around state: +Using processes around state and name registering are very common patterns in Elixir applications. However, most of the time, we won't implement those patterns manually as above, but by using one of the many abstractions that ship with Elixir. For example, Elixir provides [agents](/docs/stable/elixir/Agent.html), which are simple abstractions around state: ```iex iex> {:ok, pid} = Agent.start_link(fn -> %{} end)