mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
Dartdoc: Fix missing space after 'dynamic' in member declarations in generated docs.
BUG= Review URL: https://codereview.chromium.org//14070006 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@21210 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
parent
11edd87390
commit
8701674dbd
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue