chore: fix typespec

This commit is contained in:
Zach Daniel 2022-06-04 17:05:49 -04:00
parent a626f8d92d
commit 0d7eac7829

View file

@ -11,7 +11,7 @@ defmodule Ash.Sort do
@type sort_order ::
:asc | :desc | :asc_nils_first | :asc_nils_last | :desc_nils_first | :desc_nils_last
@type t :: list(atom | {atom, sort_order}) | atom
@type t :: list(atom | {atom, sort_order} | {atom, {sort_order, Keyword.t() | map}}) | atom
alias Ash.Error.Query.{InvalidSortOrder, NoSuchAttribute}