Index: utils/apidoc/apidoc.dart |
diff --git a/utils/apidoc/apidoc.dart b/utils/apidoc/apidoc.dart |
index 664c4fffdf4bd7350306f21149009606e0be4f08..fe0ee3804adc1de51b4c97683e36627e86bcd1e2 100644 |
--- a/utils/apidoc/apidoc.dart |
+++ b/utils/apidoc/apidoc.dart |
@@ -454,8 +454,8 @@ 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 +475,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 ''; |
@@ -484,8 +484,8 @@ 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. |
+ * 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 +504,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> |
'''; |
} |