Fix formatting

This commit is contained in:
Marcel Otto 2020-11-11 11:16:38 +01:00
parent 42d5dfc5a6
commit 2b0296fd32

View file

@ -21,18 +21,18 @@ defmodule RDF.Utils.ResourceClassifier do
@property_properties (Enum.map(
~w[
domain
range
subPropertyOf
],
domain
range
subPropertyOf
],
&rdfs_iri/1
) ++
Enum.map(
~w[
equivalentProperty
inverseOf
propertyDisjointWith
],
equivalentProperty
inverseOf
propertyDisjointWith
],
&owl_iri/1
))
|> MapSet.new()
@ -48,18 +48,18 @@ defmodule RDF.Utils.ResourceClassifier do
rdfs_iri("ContainerMembershipProperty")
| Enum.map(
~w[
ObjectProperty
DatatypeProperty
AnnotationProperty
FunctionalProperty
InverseFunctionalProperty
SymmetricProperty
AsymmetricProperty
ReflexiveProperty
IrreflexiveProperty
TransitiveProperty
DeprecatedProperty
],
ObjectProperty
DatatypeProperty
AnnotationProperty
FunctionalProperty
InverseFunctionalProperty
SymmetricProperty
AsymmetricProperty
ReflexiveProperty
IrreflexiveProperty
TransitiveProperty
DeprecatedProperty
],
&owl_iri/1
)
]