From 3e4a113620f13f068c11c932b2820698359029b1 Mon Sep 17 00:00:00 2001 From: SpaceEEC Date: Wed, 3 Apr 2019 13:39:15 +0200 Subject: [PATCH] docs(ApiError): fix path and method type definitions --- lib/rest/api_error.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/rest/api_error.ex b/lib/rest/api_error.ex index e027150..559578c 100644 --- a/lib/rest/api_error.ex +++ b/lib/rest/api_error.ex @@ -33,8 +33,8 @@ defmodule Crux.Rest.ApiError do status_code: integer(), code: integer() | nil, message: String.t(), - path: atom(), - method: String.t() + path: String.t(), + method: atom() } @doc """