aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/docs
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2020-02-18 17:46:09 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2020-02-18 17:46:09 +0300
commit61d9f43e463a3b3b0c1e4b9c98c22e222797bd82 (patch)
treed0db351126377c4a648155df4dfdfd4358874b9c /lib/pleroma/docs
parent269d592181bff8601f6545b85158ee1c222ff20d (diff)
parent3fa2ac68df10f6ffe3c1ea76fa10c30da90f4bd0 (diff)
downloadpleroma-61d9f43e463a3b3b0c1e4b9c98c22e222797bd82.tar.gz
Merge remote-tracking branch 'remotes/origin/develop' into 1505-threads-federation
Diffstat (limited to 'lib/pleroma/docs')
-rw-r--r--lib/pleroma/docs/generator.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/docs/generator.ex b/lib/pleroma/docs/generator.ex
index 6b12dcdd9..e0fc8cd02 100644
--- a/lib/pleroma/docs/generator.ex
+++ b/lib/pleroma/docs/generator.ex
@@ -13,7 +13,7 @@ defmodule Pleroma.Docs.Generator do
|> Enum.filter(&String.ends_with?(&1, ".ex"))
|> Enum.map(fn filename ->
module = filename |> String.trim_trailing(".ex") |> Macro.camelize()
- String.to_existing_atom(start <> module)
+ String.to_atom(start <> module)
end)
end
end