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:
ScottSWu
2016-06-13 10:53:31 -07:00
parent de97687422
commit 14a3ade662
2 changed files with 3 additions and 3 deletions

View File

@ -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);
}