Skip to content

Commit

Permalink
Change variable from bk to bucket (#13921)
Browse files Browse the repository at this point in the history
Simple change from `bk` to `bucket` for consistency with the rest of the doc
  • Loading branch information
jamauro authored Oct 21, 2024
1 parent 444cd7e commit 372836d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/elixir/pages/mix-and-otp/genservers.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ iex> {:ok, registry} = GenServer.start_link(KV.Registry, :ok)
{:ok, #PID<0.136.0>}
iex> GenServer.cast(registry, {:create, "shopping"})
:ok
iex> {:ok, bk} = GenServer.call(registry, {:lookup, "shopping"})
iex> {:ok, bucket} = GenServer.call(registry, {:lookup, "shopping"})
{:ok, #PID<0.174.0>}
```

Expand Down

0 comments on commit 372836d

Please sign in to comment.