From ee93b95568cbcf1434cb3c71fdaeb0db95721ecc Mon Sep 17 00:00:00 2001 From: ymtszw Date: Mon, 22 Jan 2018 15:16:25 +0900 Subject: [PATCH] Changes %{} => correct map type specifications --- lib/oauth2/access_token.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/oauth2/access_token.ex b/lib/oauth2/access_token.ex index c7f9b30..6d2238a 100644 --- a/lib/oauth2/access_token.ex +++ b/lib/oauth2/access_token.ex @@ -18,8 +18,8 @@ defmodule OAuth2.AccessToken do @type refresh_token :: binary | nil @type expires_at :: integer @type token_type :: binary - @type other_params :: %{} - @type body :: binary | %{} + @type other_params :: %{binary => binary} + @type body :: binary | map @type t :: %__MODULE__{ access_token: access_token,