From 372836d623fbbeeb6111ed473eb8f64f7bf4b203 Mon Sep 17 00:00:00 2001 From: jamauro Date: Mon, 21 Oct 2024 11:00:21 -0500 Subject: [PATCH] Change variable from `bk` to `bucket` (#13921) Simple change from `bk` to `bucket` for consistency with the rest of the doc --- lib/elixir/pages/mix-and-otp/genservers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/elixir/pages/mix-and-otp/genservers.md b/lib/elixir/pages/mix-and-otp/genservers.md index 734c810b7c2..0c726da3788 100644 --- a/lib/elixir/pages/mix-and-otp/genservers.md +++ b/lib/elixir/pages/mix-and-otp/genservers.md @@ -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>} ```