chore(typescript): Changed double asterisks in #9100 to single asterisks
As in #9151, these comments are being read as JSDoc comments. This commit is smaller and only touches a few files that are causing errors.
This commit is contained in:
@ -198,10 +198,10 @@ export class BrowserDomAdapter extends GenericBrowserDomAdapter {
|
||||
t.innerHTML = html;
|
||||
return t;
|
||||
}
|
||||
createElement(tagName: any /** TODO #9100 */, doc = document): HTMLElement {
|
||||
createElement(tagName: any /* TODO #9100 */, doc = document): HTMLElement {
|
||||
return doc.createElement(tagName);
|
||||
}
|
||||
createElementNS(ns: any /** TODO #9100 */, tagName: any /** TODO #9100 */, doc = document):
|
||||
createElementNS(ns: any /* TODO #9100 */, tagName: any /* TODO #9100 */, doc = document):
|
||||
Element {
|
||||
return doc.createElementNS(ns, tagName);
|
||||
}
|
||||
|
Reference in New Issue
Block a user