Skip to content

Commit 61127dd

Browse files
author
Tony Sansone
committed
Fixed GAR 1.6 violations
1 parent 6c3ed12 commit 61127dd

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

src/content/guides/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ To update these cards, edit src/_data/docs_cards.yml.
2121
{% capture index0Modulo3 %}{{ forloop.index0 | modulo:3 }}{% endcapture %}
2222
{% capture indexModulo3 %}{{ forloop.index | modulo:3 }}{% endcapture %}
2323
<div class="card">
24-
<h3><a href="{{card.url}}">{{card.name}}</a></h3>
24+
<h2><a href="{{card.url}}">{{card.name}}</a></h2>
2525
<p>{{card.description}}</p>
2626
</div>
2727
{% endfor -%}

src/content/guides/language/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ These two resources are popular with both beginning Dart developers and experts.
99

1010
<div class="card-grid">
1111
<div class="card">
12-
<h3><a href="/language">Language tour</a></h3>
12+
<h2><a href="/language">Language tour</a></h2>
1313
<p>A walk through all of the major features of the Dart language.</p>
1414
</div>
1515
<div class="card">
16-
<h3><a href="/effective-dart">Effective Dart</a></h3>
16+
<h2><a href="/effective-dart">Effective Dart</a></h2>
1717
<p>A set of guides on how to write the best Dart code
1818
possible. Guidelines cover style, documentation, usage,
1919
and design.</p>

src/content/resources/index.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,19 @@ toc: false
66

77
Check out the following Dart language resources:
88

9-
109
<div class="card-grid">
1110
<div class="card">
12-
<h3><a href="/resources/books">Books</a></h3>
11+
<h2><a href="/resources/books">Books</a></h2>
1312
<p>A collection of books about Dart.</p>
1413
</div>
1514

1615
<div class="card">
17-
<h3><a href="/code-of-conduct">Code of conduct</a></h3>
16+
<h2><a href="/code-of-conduct">Code of conduct</a></h2>
1817
<p>Keeping community spaces safe and respectful.</p>
1918
</div>
2019

2120
<div class="card">
22-
<h3><a href="/resources/videos">Videos</a></h3>
21+
<h2><a href="/resources/videos">Videos</a></h2>
2322
<p>Videos aimed at Dart developers.</p>
2423
</div>
2524
</div>

0 commit comments

Comments
 (0)