Skip to content

Commit 24bc0be

Browse files
committed
fix: remove some leftover crude pluralization
1 parent 8810a0c commit 24bc0be

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dqgen/resources/asciidoc_templates/instance.jinja2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
{% call mc.render_fetch_results(content, error) %}
88
{% set compress_uris = simplify_uri_columns_in_tabular(data_frame=content,namespace_inventory=namespaces,error_fail=False) %}
99
{% endraw %}
10-
=== {{ operation|title }} {{ class_name }}s
11-
{{ "{{" }} mc.pandas_table(content, "{{ operation|title }} {{ class_name }}s") {{ "}}" }}
10+
=== {{ operation|title }} {{ class_name }}
11+
{{ "{{" }} mc.pandas_table(content, "{{ operation|title }} {{ class_name }}") {{ "}}" }}
1212
{% raw %}
1313
{% endcall %}
1414
{% endif %}

dqgen/resources/html_templates/instance.jinja2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
{% call mc.render_fetch_results(content, error) %}
88
{% set compress_uris = simplify_uri_columns_in_tabular(data_frame=content,namespace_inventory=namespaces,error_fail=False) %}
99
{% endraw %}
10-
<h2 class="ui header">{{ operation|title }} {{ class_name }}s</h2>
10+
<h2 class="ui header">{{ operation|title }} {{ class_name }}</h2>
1111
<section class="ui basic segment">
1212
<p>The table below lists the {{ operation }} <strong>{{ cls }}</strong>
1313
</p>
1414
<p><strong>Query identifier:</strong> {{ query_file }}</p>
15-
{{ "{{" }} mc.pandas_table(content, "{{ operation|title }} {{ class_name }}s") {{ "}}" }}
15+
{{ "{{" }} mc.pandas_table(content, "{{ operation|title }} {{ class_name }}") {{ "}}" }}
1616
</section>
1717
{% raw %}
1818
{% endcall %}

0 commit comments

Comments
 (0)