From 9665521e260e4ce1560a0f106fffef77d7c86746 Mon Sep 17 00:00:00 2001 From: Eric Lathrop Date: Thu, 3 Nov 2016 09:54:37 -0400 Subject: [PATCH] Fix typo in Registry docs (#5405) --- lib/elixir/lib/registry.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/elixir/lib/registry.ex b/lib/elixir/lib/registry.ex index 5dd87098d1e..b885b726fed 100644 --- a/lib/elixir/lib/registry.ex +++ b/lib/elixir/lib/registry.ex @@ -53,7 +53,7 @@ defmodule Registry do {:ok, _} = Registry.start_link(:duplicate, Registry.DispatcherTest) By calling `register/3`, different processes can register under a given key - and associate any value udner that key. In this case, let's register the + and associate any value under that key. In this case, let's register the current process under the key `"hello"` and attach the `{IO, :inspect}` tuple to it: