Skip to content

Commit

Permalink
fix: Remove ambiguity indicating a given tutorial is based of a speci…
Browse files Browse the repository at this point in the history
…fic version (#5)

Previous wording seems to imply a given tutorial was only working
for a specific application version instead of being created using a
specific version.

Co-authored-by: James Butler <[email protected]>
  • Loading branch information
jcfr and jamesobutler authored Jan 13, 2025
1 parent 9f48e46 commit 2cedb92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions training.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@ This page provides hands-on tutorials designed to help users navigate and utiliz
{% if tutorial.details.modules %}
<li><strong>Modules:</strong> {{ tutorial.details.modules }}</li>
{% endif %}
{% if tutorial.details.application_version %}
<li><strong>Application version:</strong> {{ tutorial.details.application_version }}</li>
{% endif %}
{% if tutorial.details.authors %}
<li><strong>Authors:</strong>
{% for author in tutorial.details.authors %}
Expand All @@ -67,6 +64,9 @@ This page provides hands-on tutorials designed to help users navigate and utiliz
</li>
{% endif %}
</ul>
{% if tutorial.details.application_version %}
<div>Tutorial based on <i>{{ tutorial.details.application_version }}</i></div>
{% endif %}
</div>
<div class="column">
{% if tutorial.image %}
Expand Down

0 comments on commit 2cedb92

Please sign in to comment.