@@ -3208,7 +3208,7 @@ abstract class ModelElement extends Nameable
3208
3208
}
3209
3209
}
3210
3210
3211
- /// A ModelElement for a FunctionElement that isn't part of a type definition.
3211
+ /// A [ ModelElement] for a [ FunctionElement] that isn't part of a type definition.
3212
3212
class ModelFunction extends ModelFunctionTyped {
3213
3213
ModelFunction (FunctionElement element, Library library)
3214
3214
: super (element, library);
@@ -3229,12 +3229,12 @@ class ModelFunction extends ModelFunctionTyped {
3229
3229
FunctionElement get _func => (element as FunctionElement );
3230
3230
}
3231
3231
3232
- /// A [ModelElement] for a [GenericModelFunctionElement] that is not an
3232
+ /// A [ModelElement] for a [GenericModelFunctionElement] that is an
3233
3233
/// explicit typedef.
3234
3234
///
3235
3235
/// Distinct from ModelFunctionTypedef in that it doesn't
3236
3236
/// have a name, but we document it as "Function" to match how these are
3237
- /// written in method declarations.
3237
+ /// written in declarations.
3238
3238
class ModelFunctionAnonymous extends ModelFunctionTyped {
3239
3239
ModelFunctionAnonymous (FunctionTypedElement element, Library library)
3240
3240
: super (element, library) {}
@@ -3246,7 +3246,7 @@ class ModelFunctionAnonymous extends ModelFunctionTyped {
3246
3246
bool get isPublic => false ;
3247
3247
}
3248
3248
3249
- /// A ModelElement for a GenericModelFunctionElement that may be part of an
3249
+ /// A [ ModelElement] for a [ GenericModelFunctionElement] that is part of an
3250
3250
/// explicit typedef.
3251
3251
class ModelFunctionTypedef extends ModelFunctionTyped {
3252
3252
ModelFunctionTypedef (FunctionTypedElement element, Library library)
0 commit comments