Skip to content

Commit 6e29599

Browse files
MegaRedHandsabiwara
authored andcommitted
Fix typo in docs: Keywoird -> Keyword (#13205)
1 parent f2dae09 commit 6e29599

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir/pages/anti-patterns/process-anti-patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ defmodule Counter do
263263
@doc "Starts a counter process."
264264
def start_link(opts \\ []) do
265265
initial_valye = Keyword.get(opts, :initial_value, 0)
266-
name = Keywoird.get(opts, :name, __MODULE__)
266+
name = Keyword.get(opts, :name, __MODULE__)
267267
GenServer.start(__MODULE__, initial_value, name: name)
268268
end
269269

0 commit comments

Comments
 (0)