From 7546e4cd566064dd183edefe453c8326859b2e60 Mon Sep 17 00:00:00 2001 From: Juliano Date: Thu, 12 Oct 2017 22:11:58 -0300 Subject: [PATCH] fix unescaped open-close (<>) tags --- src/lib/icon/icon-registry.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/icon/icon-registry.ts b/src/lib/icon/icon-registry.ts index 6bae77049de4..6c736a4a48c2 100644 --- a/src/lib/icon/icon-registry.ts +++ b/src/lib/icon/icon-registry.ts @@ -181,7 +181,7 @@ export class MatIconRegistry { } /** - * Returns an Observable that produces the icon (as an DOM element) from the given URL. + * Returns an Observable that produces the icon (as an `` DOM element) from the given URL. * The response from the URL may be cached so this will not always cause an HTTP request, but * the produced element will always be a new copy of the originally fetched icon. (That is, * it will not contain any modifications made to elements previously returned). @@ -208,7 +208,7 @@ export class MatIconRegistry { } /** - * Returns an Observable that produces the icon (as an DOM element) with the given name + * Returns an Observable that produces the icon (as an `` DOM element) with the given name * and namespace. The icon must have been previously registered with addIcon or addIconSet; * if not, the Observable will throw an error. *