Skip to content

Commit

Permalink
fix(script): fix plural form
Browse files Browse the repository at this point in the history
  • Loading branch information
ccamel committed Mar 14, 2024
1 parent a6e3e4e commit cd433a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/cli/templates/schema.md.j2
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Here are the namespaces used in this schema:
{%- if classes | count > 0 %}
## Classes

This schema defines {{ classes | count }} classe{{ "s" if classes | count > 1 else "" }}.
This schema defines {{ classes | count }} class{{ "es" if classes | count > 1 else "" }}.

{% for klass in classes -%}
### {{ klass | value(schema.graph, RDFS.label) | capitalize }}
Expand Down

0 comments on commit cd433a1

Please sign in to comment.