Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Unified Diff: sdk/lib/_internal/dartdoc/lib/dartdoc.dart

Issue 12615002: Remove references to capital-D-Dynamic. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/dartdoc/lib/dartdoc.dart
diff --git a/sdk/lib/_internal/dartdoc/lib/dartdoc.dart b/sdk/lib/_internal/dartdoc/lib/dartdoc.dart
index 26579b430881989e86bf6060d32ae3ffd2f9f1c1..a98de878bf875cff1140de79bc002802dec584ad 100644
--- a/sdk/lib/_internal/dartdoc/lib/dartdoc.dart
+++ b/sdk/lib/_internal/dartdoc/lib/dartdoc.dart
@@ -1671,7 +1671,7 @@ class Dartdoc {
annotateType(ContainerMirror enclosingType,
TypeMirror type,
[String paramName = null]) {
- // Don't bother explicitly displaying Dynamic.
+ // Don't bother explicitly displaying Ddnamic.
Johnni Winther 2013/03/07 17:37:20 Ddnamic -> dynamic
if (type.isDynamic) {
if (paramName != null) write(paramName);
return;
@@ -1701,7 +1701,7 @@ class Dartdoc {
return;
}
if (type.isDynamic) {
- // Do not generate links for Dynamic.
+ // Do not generate links for dynamic.
write('dynamic');
return;
}
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/types/simple_types_inferrer.dart ('k') | tests/compiler/dart2js/mirrors_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698