Use correct pattern matching for Elixir

This commit is contained in:
Dan Tong 2020-03-03 14:36:47 +13:00 committed by GitHub
parent 9e975a8dcf
commit 6f9362b080
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -439,7 +439,7 @@ self() #=> #PID<0.27.0>
# Create an agent with `Agent.start_link`, passing in a function # Create an agent with `Agent.start_link`, passing in a function
# The initial state of the agent will be whatever that function returns # The initial state of the agent will be whatever that function returns
{ok, my_agent} = Agent.start_link(fn -> ["red", "green"] end) {:ok, my_agent} = Agent.start_link(fn -> ["red", "green"] end)
# `Agent.get` takes an agent name and a `fn` that gets passed the current state # `Agent.get` takes an agent name and a `fn` that gets passed the current state
# Whatever that `fn` returns is what you'll get back # Whatever that `fn` returns is what you'll get back