Fix Elixir 1.8 type annotation issue

This commit is contained in:
Maxim Filippov 2019-01-15 02:58:48 +02:00
parent f20bfc9ea5
commit e8eff9fe03
1 changed files with 3 additions and 2 deletions

View File

@ -34,8 +34,9 @@ defmodule Pleroma.Upload do
require Logger
@type source ::
Plug.Upload.t() | data_uri_string ::
String.t() | {:from_local, name :: String.t(), id :: String.t(), path :: String.t()}
Plug.Upload.t()
| (data_uri_string :: String.t())
| {:from_local, name :: String.t(), id :: String.t(), path :: String.t()}
@type option ::
{:type, :avatar | :banner | :background}