Skip to content

Commit

Permalink
FIX typo in region name
Browse files Browse the repository at this point in the history
  • Loading branch information
mdesalvo committed Aug 29, 2020
1 parent f8e279e commit e71dc2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ internal static RDFOntologyValidatorReport AsymmetricProperty(RDFOntology ontolo
internal static RDFOntologyValidatorReport IrreflexiveProperty(RDFOntology ontology) {
RDFSemanticsEvents.RaiseSemanticsInfo("Launching execution of validation rule 'IrreflexiveProperty'...");

#region AsymmetricProperty
#region IrreflexiveProperty
var report = new RDFOntologyValidatorReport();
foreach (var irrefProp in ontology.Model.PropertyModel.Where(prop => prop.IsIrreflexiveProperty())) {
foreach (var asn in ontology.Data.Relations.Assertions.Where(asn => asn.TaxonomyPredicate.Equals(irrefProp))) {
Expand Down

0 comments on commit e71dc2e

Please sign in to comment.