summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@dashbit.co>2023-05-10 14:03:58 +0200
committerJosé Valim <jose.valim@dashbit.co>2023-05-10 14:15:17 +0200
commit151caab673fae5091a06e820456a2f0f065f5e57 (patch)
tree6b5998d7af37dadd055c5014480ceffd0c3fc0c8
parent48e2efd2d9479ce6a79ae2badf91f24d87e71b88 (diff)
downloadelixir-151caab673fae5091a06e820456a2f0f065f5e57.tar.gz
Remove dot from error messages
-rw-r--r--lib/elixir/lib/supervisor.ex4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/elixir/lib/supervisor.ex b/lib/elixir/lib/supervisor.ex
index 5425bd80a..f51bdc4a5 100644
--- a/lib/elixir/lib/supervisor.ex
+++ b/lib/elixir/lib/supervisor.ex
@@ -815,10 +815,10 @@ defmodule Supervisor do
start: {#{inspect(module)}, :start_link, [arg1, arg2]}
}
- See the Supervisor documentation for more information.
+ See the Supervisor documentation for more information
"""
else
- "The module #{inspect(module)} was given as a child to a supervisor but it does not exist."
+ "The module #{inspect(module)} was given as a child to a supervisor but it does not exist"
end
end