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. *