aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src/gen_server.erl
diff options
context:
space:
mode:
authorRichard Carlsson <[email protected]>2011-10-31 13:43:16 +0100
committerRichard Carlsson <[email protected]>2012-01-03 12:43:31 +0100
commitbc330f609b6ff751eefff4113d54f856832c3f30 (patch)
tree94b227a83e4c8b570f6d996af0b80637523efc42 /lib/stdlib/src/gen_server.erl
parent01f35546b9dbaac053a80418b38105a1acc35540 (diff)
downloadotp-bc330f609b6ff751eefff4113d54f856832c3f30.tar.gz
otp-bc330f609b6ff751eefff4113d54f856832c3f30.tar.bz2
otp-bc330f609b6ff751eefff4113d54f856832c3f30.zip
Correct spelling of "registered" in various places in the source code
Diffstat (limited to 'lib/stdlib/src/gen_server.erl')
-rw-r--r--lib/stdlib/src/gen_server.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/gen_server.erl b/lib/stdlib/src/gen_server.erl
index af07bc988a..f720ec15f5 100644
--- a/lib/stdlib/src/gen_server.erl
+++ b/lib/stdlib/src/gen_server.erl
@@ -844,7 +844,7 @@ name_to_pid(Name) ->
undefined ->
case global:whereis_name(Name) of
undefined ->
- exit(could_not_find_registerd_name);
+ exit(could_not_find_registered_name);
Pid ->
Pid
end;