Skip to content

Commit 34d371f

Browse files
authored
Tidy doc comment of TopLevelContainer (#2643)
1 parent e1e43fd commit 34d371f

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

lib/src/model/top_level_container.dart

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
import 'package:dartdoc/src/model/model.dart';
66
import 'package:dartdoc/src/model_utils.dart' as model_utils;
77

8-
/// A set of [Class]es, [Enum]s, [TopLevelVariable]s, [ModelFunction]s,
9-
/// [Field]s, and [Typedef]s, possibly initialized after construction by
10-
/// accessing private member variables. Do not call any methods or members
11-
/// excepting [name] and the private Lists below before finishing initialization
12-
/// of a [TopLevelContainer].
8+
/// A set of [Class]es, [Extension]s, [Enum]s, [Mixin]s, [TopLevelVariable]s,
9+
/// [ModelFunction]s, and [Typedef]s, possibly initialized after construction by
10+
/// accessing private member variables.
11+
///
12+
/// Do not call any methods or members excepting [name] and the private Lists
13+
/// below before finishing initialization of a [TopLevelContainer].
1314
abstract class TopLevelContainer implements Nameable {
1415
Iterable<Class> get classes;
1516

0 commit comments

Comments
 (0)