Skip to content

Commit

Permalink
Fix typo in schema:Enumeration name (#669)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjelloun authored Jun 4, 2024
1 parent ce08d44 commit 3b1408e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/croissant.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ croissant:Transform a rdf:Class ;
croissant:ContentExtractionEnumeration a rdf:Class ;
rdfs:label "ContexExtractionEnumeration" ;
rdfs:comment "Specifies which content to extract from a file. One of \"all\", \"lines\", or \"lineNumbers\"." ;
rdfs:subClassOf schema:Enumerations .
rdfs:subClassOf schema:Enumeration .

croissant:FilePropertyEnumeration a rdf:Class ;
rdfs:label "FilePropertyEnumeration" ;
rdfs:comment "Specifies a property of a FileObject. One of \"fullPath\" or \"fileName\"." ;
rdfs:subClassOf schema:Enumerations .
rdfs:subClassOf schema:Enumeration .

# Dataset level properies

Expand Down Expand Up @@ -261,7 +261,7 @@ croissant:jsonQuery a rdf:Property ;
croissant:Split a rdf:class ;
rdfs:label "Split" ;
rdfs:comment "Splits for training a machine learning, typically test, train and validation." ;
rdfs:subClassOf schema:enumeration .
rdfs:subClassOf schema:Enumeration .

croissant:TrainSplit a croissant:Split ;
rdfs:label "TrainSplit" ;
Expand Down

0 comments on commit 3b1408e

Please sign in to comment.