fixed blank lines

master
Théophile Choutri 2017-04-17 11:02:35 +02:00
parent 4902f900e6
commit ade43208f8
1 changed files with 2 additions and 1 deletions

View File

@ -295,7 +295,6 @@ defmodule Hunter.Api do
"""
@callback unreblog(conn :: Hunter.Client.t, id :: non_neg_integer) :: Hunter.Status.t
@doc """
Fetch the list of users who reblogged the status.
@ -303,6 +302,7 @@ defmodule Hunter.Api do
* `conn` - connection credentials
* `id` - status identifier
"""
@callback reblogged_by(conn :: Hunter.Client.t, id :: non_neg_integer) :: [Hunter.Account.t]
@ -345,6 +345,7 @@ defmodule Hunter.Api do
* `conn` - connection credentials
* `id` - status identifier
"""
@callback favourited_by(conn :: Hunter.Client.t, id :: non_neg_integer) :: [Hunter.Account.t]