Add missing PropertyMap alias
This commit is contained in:
parent
7d7d63c238
commit
1adfb697b1
1 changed files with 2 additions and 2 deletions
|
@ -16,14 +16,14 @@ defmodule RDF.Description do
|
|||
@behaviour Access
|
||||
|
||||
import RDF.Statement
|
||||
alias RDF.{Statement, Triple}
|
||||
alias RDF.{Statement, Triple, PropertyMap}
|
||||
|
||||
@type t :: %__MODULE__{
|
||||
subject: Statement.subject(),
|
||||
predications: predications
|
||||
}
|
||||
|
||||
@type predications :: %{Statement.predicate() => %{Statement.object() => nil}}
|
||||
@type predications :: %{Statement.predicate() => %{Statement.object() => Annotation.t() | nil}}
|
||||
|
||||
@type input ::
|
||||
Statement.coercible_t()
|
||||
|
|
Loading…
Reference in a new issue