Skip to content

Commit 70c2e39

Browse files
aanchal88alxhub
authored andcommitted
docs: updated the markup elements (#50586)
PR Close #50586
1 parent 22eb947 commit 70c2e39

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

aio/content/examples/getting-started/src/app/top-bar/top-bar.component.1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ <h1>My Store</h1>
33
</a>
44

55
<a class="button fancy-button">
6-
<i class="material-icons">shopping_cart</i>Checkout
6+
<em class="material-icons">shopping_cart</em>Checkout
77
</a>

aio/content/examples/getting-started/src/app/top-bar/top-bar.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ <h1>My Store</h1>
44

55
<!-- #docregion cart-route -->
66
<a routerLink="/cart" class="button fancy-button">
7-
<i class="material-icons">shopping_cart</i>Checkout
7+
<em class="material-icons">shopping_cart</em>Checkout
88
</a>
99
<!-- #enddocregion cart-route -->

aio/src/app/shared/analytics.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ interface WindowWithAnalytics extends Window {
1212
gtag?(...args: any[]): void;
1313
/** Legacy Universal Analytics `analytics.js` field. */
1414
ga?(...args: any[]): void;
15-
};
15+
}
1616

1717
@Injectable()
1818
/**

aio/tools/transforms/templates/api/package.template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ <h2>Entry points</h2>
4444

4545
<h2>{% if doc.isPrimaryPackage %}Primary entry{% else %}Entry{% endif %} point exports</h2>
4646
{% if not doc.hasPublicExports %}
47-
<p><i>No public exports.</i></p>
47+
<p><em>No public exports.</em></p>
4848
{% endif %}
4949
{% include "includes/deprecation.html" %}
5050
{$ listItems(doc.ngmodules, 'NgModules') $}

aio/tools/transforms/templates/overview-dump.template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% import "lib/githubLinks.html" as github -%}
22
{% import "api/lib/memberHelpers.html" as members -%}
3-
{% macro goToCode(doc) %}<a href="{$ github.githubViewHref(doc, versionInfo) $}" class="go-to-code" title="Go to source code"><i class="material-icons" aria-hidden="true" role="img">code</i></a>{% endmacro %}
3+
{% macro goToCode(doc) %}<a href="{$ github.githubViewHref(doc, versionInfo) $}" class="go-to-code" title="Go to source code"><em class="material-icons" aria-hidden="true" role="img">code</em></a>{% endmacro %}
44
{% macro label(test, class, text) %}{% if test %}<label class="{$ class $}">{$ text $}</label>{% endif %}{% endmacro %}
55
{% macro renderLabels(doc) -%}
66
{$ label(doc.notYetDocumented, 'no-doc', 'UNDOCUMENTED') $}

0 commit comments

Comments
 (0)