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

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

Issue 14070006: Dartdoc: Fix missing space after 'dynamic' in member declarations in generated docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 42246b9fcdcedaf6480a5492995b8bee0999bd61..86bf1d646b9ec6ea912551645b182555f3cf8202 100644
--- a/sdk/lib/_internal/dartdoc/lib/dartdoc.dart
+++ b/sdk/lib/_internal/dartdoc/lib/dartdoc.dart
@@ -1705,7 +1705,7 @@ class Dartdoc {
*/
annotateDynamicType(ContainerMirror enclosingType,
TypeMirror type) {
- annotateType(enclosingType, type, type.isDynamic ? 'dynamic' : null);
+ annotateType(enclosingType, type, type.isDynamic ? 'dynamic ' : null);
}
Bill Hesse 2013/04/10 15:40:42 annotateDynamicType is only used in one place, to
/**
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698