| Index: utils/apidoc/apidoc.dart
|
| diff --git a/utils/apidoc/apidoc.dart b/utils/apidoc/apidoc.dart
|
| index 664c4fffdf4bd7350306f21149009606e0be4f08..9c471f7576d99f7630cf91c53cb0f42eb1139e04 100644
|
| --- a/utils/apidoc/apidoc.dart
|
| +++ b/utils/apidoc/apidoc.dart
|
| @@ -454,8 +454,9 @@ class Apidoc extends doc.Dartdoc {
|
|
|
| /**
|
| * Returns additional documentation for [member], linking it to the
|
| - * corresponding `dart:html` or `dart:dom` [Member](s). If [member] is not in
|
| - * `dart:html` or `dart:dom`, returns no additional documentation.
|
| + * corresponding `dart:html` or `dart:dom_deprecated`
|
| + * [Member](s). If [member] is not in `dart:html` or
|
| + * `dart:dom_deprecated`, returns no additional documentation.
|
| */
|
| String getMemberDoc(Member member) {
|
| if (_diff.domToHtml.containsKey(member)) {
|
| @@ -475,7 +476,7 @@ class Apidoc extends doc.Dartdoc {
|
| return
|
| '''
|
| <p class="correspond">This $phrase $domMembers in the
|
| - ${a("dom.html", "dart:dom")} library.</p>
|
| + ${a("dom.html", "dart:dom_deprecated")} library.</p>
|
| ''';
|
| } else {
|
| return '';
|
| @@ -483,9 +484,10 @@ class Apidoc extends doc.Dartdoc {
|
| }
|
|
|
| /**
|
| - * Returns additional Markdown-formatted documentation for [type], linking it
|
| - * to the corresponding `dart:html` or `dart:dom` [Type](s). If [type] is not
|
| - * in `dart:html` or `dart:dom`, returns no additional documentation.
|
| + * Returns additional Markdown-formatted documentation for [type],
|
| + * linking it to the corresponding `dart:html` or
|
| + * `dart:dom_deprecated` [Type](s). If [type] is not in `dart:html`
|
| + * or `dart:dom_deprecated`, returns no additional documentation.
|
| */
|
| String getTypeDoc(Type type) {
|
| final htmlTypes = _diff.domTypesToHtml[type];
|
| @@ -504,7 +506,7 @@ class Apidoc extends doc.Dartdoc {
|
| return
|
| '''
|
| <p class="correspond">This corresponds to $domTypesText in the
|
| - ${a("dom.html", "dart:dom")} library.</p>
|
| + ${a("dom.html", "dart:dom_deprecated")} library.</p>
|
| ''';
|
| }
|
|
|
|
|